mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
[c,printf] fix wlog format string to match arguments
This commit is contained in:
@@ -66,7 +66,8 @@ static void sig_abort_connect(int signum, const char* signame, void* ctx)
|
||||
{
|
||||
rdpContext* context = (rdpContext*)ctx;
|
||||
|
||||
WLog_INFO(TAG, "Signal %s [%d], terminating session %p", signame, signum, context);
|
||||
WLog_INFO(TAG, "Signal %s [%d], terminating session %p", signame, signum,
|
||||
WINPR_CXX_COMPAT_CAST(const void*, context));
|
||||
if (context)
|
||||
freerdp_abort_connect_context(context);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user