mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 00:14:11 +09:00
[c,printf] fix wlog format string to match arguments
This commit is contained in:
@@ -942,8 +942,10 @@ static UINT drive_register_drive_path(PDEVICE_SERVICE_ENTRY_POINTS pEntryPoints,
|
||||
|
||||
if (!pEntryPoints || !name || !path)
|
||||
{
|
||||
WLog_ERR(TAG, "[%s] Invalid parameters: pEntryPoints=%p, name=%p, path=%p", pEntryPoints,
|
||||
name, path);
|
||||
WLog_ERR(TAG, "Invalid parameters: pEntryPoints=%p, name=%p, path=%p",
|
||||
WINPR_CXX_COMPAT_CAST(const void*, pEntryPoints),
|
||||
WINPR_CXX_COMPAT_CAST(const void*, name),
|
||||
WINPR_CXX_COMPAT_CAST(const void*, path));
|
||||
return ERROR_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user