Fixed passing enum to pointer type

This commit is contained in:
Armin Novak
2022-09-20 14:26:30 +02:00
committed by akallabeth
parent eaaeb62f05
commit a8d4c3397c

View File

@@ -504,7 +504,7 @@ BOOL freerdp_channels_data(freerdp* instance, UINT16 channelId, const BYTE* cdat
if (!instance || !data.pcb)
{
WLog_ERR(TAG, "%s(%p, %" PRIu16 ", %p, 0x%08x): Invalid arguments", __FUNCTION__, instance,
channelId, data, flags);
channelId, data.pcb, flags);
return FALSE;
}