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

This commit is contained in:
akallabeth
2026-01-16 11:43:06 +01:00
parent 34daff7b35
commit 1d8d4a6a09

View File

@@ -294,7 +294,7 @@ BOOL NamedPipeRead(PVOID Object, LPVOID lpBuffer, DWORD nNumberOfBytesToRead,
/* Overlapped I/O */
if (!lpOverlapped)
{
WLog_ERR(TAG, "%s requires lpOverlapped != NULL as FILE_FLAG_OVERLAPPED is set");
WLog_ERR(TAG, "requires lpOverlapped != NULL as FILE_FLAG_OVERLAPPED is set");
SetLastError(ERROR_NOT_SUPPORTED);
return FALSE;
}