[c,printf] fix wlog format string to match arguments

This commit is contained in:
akallabeth
2026-01-16 11:39:30 +01:00
parent 86ec57e76d
commit 6942050a7f

View File

@@ -696,10 +696,7 @@ UINT channel_client_post_message(void* MsgsHandle, LPVOID pData, UINT32 dataLeng
{
if (Stream_Capacity(data_in) != Stream_GetPosition(data_in))
{
char msg[128];
(void)_snprintf(msg, 127, "%s_plugin_process_received: read error",
internals->channel_name);
WLog_ERR(TAG, msg);
WLog_ERR(TAG, "%s_plugin_process_received: read error", internals->channel_name);
return ERROR_INTERNAL_ERROR;
}