mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-01-03 23:30:16 +01:00
PINE: fix error format function
This commit is contained in:
parent
bbd308a908
commit
6b556a5206
|
|
@ -106,9 +106,9 @@ namespace IPC_socket
|
|||
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);
|
||||
|
||||
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)...);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue