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:
@@ -488,8 +488,10 @@ BOOL gdi_bitmap_update(rdpContext* context, const BITMAP_UPDATE* bitmapUpdate)
|
||||
WLog_ERR(TAG,
|
||||
"Invalid arguments: context=%p, bitmapUpdate=%p, context->gdi=%p, "
|
||||
"context->codecs=%p",
|
||||
context, bitmapUpdate, context ? context->gdi : NULL,
|
||||
context ? context->codecs : NULL);
|
||||
WINPR_CXX_COMPAT_CAST(const void*, context),
|
||||
WINPR_CXX_COMPAT_CAST(const void*, bitmapUpdate),
|
||||
WINPR_CXX_COMPAT_CAST(const void*, context ? context->gdi : NULL),
|
||||
WINPR_CXX_COMPAT_CAST(const void*, context ? context->codecs : NULL));
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user