mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
PINE: fix error format function
This commit is contained in:
parent
bbd308a908
commit
6b556a5206
2 changed files with 3 additions and 3 deletions
|
@ -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…
Add table
Reference in a new issue