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:
@@ -1215,7 +1215,7 @@ BOOL client_cli_get_access_token(freerdp* instance, AccessTokenType tokenType, c
|
||||
rc = client_cli_get_avd_access_token(instance, token);
|
||||
break;
|
||||
default:
|
||||
WLog_ERR(TAG, "Unexpected value for AccessTokenType [%" PRIuz "], aborting", tokenType);
|
||||
WLog_ERR(TAG, "Unexpected value for AccessTokenType [%u], aborting", tokenType);
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -2048,7 +2048,7 @@ BOOL freerdp_client_handle_touch(rdpClientContext* cctx, UINT32 flags, INT32 fin
|
||||
case FREERDP_TOUCH_MOTION:
|
||||
return freerdp_handle_touch_motion(cctx, &contact);
|
||||
default:
|
||||
WLog_WARN(TAG, "Unhandled FreeRDPTouchEventType %d, ignoring", flags);
|
||||
WLog_WARN(TAG, "Unhandled FreeRDPTouchEventType %" PRIu32 ", ignoring", flags);
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user