PINE: fix error format function
This commit is contained in:
@@ -106,9 +106,9 @@ namespace IPC_socket
|
|||||||
m_old_port = port;
|
m_old_port = port;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (!enabled && m_ipc_server)
|
else
|
||||||
{
|
{
|
||||||
m_ipc_server.reset(nullptr);
|
m_ipc_server.reset();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ namespace IPC_socket
|
|||||||
static void write64(u32 addr, be_t<u64> value);
|
static void write64(u32 addr, be_t<u64> value);
|
||||||
|
|
||||||
template<typename... Args>
|
template<typename... Args>
|
||||||
static void error(const const_str& fmt, const Args&&... args)
|
static void error(const const_str& fmt, Args&&... args)
|
||||||
{
|
{
|
||||||
IPC.error(fmt, std::forward<Args>(args)...);
|
IPC.error(fmt, std::forward<Args>(args)...);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user