Commit 6b1f0515 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

krnl386.exe16: Don't pass NULL to printf/%s).

GCC12.2 emits a warning here. Signed-off-by: 's avatarEric Pouech <eric.pouech@gmail.com>
parent 13163832
......@@ -1323,7 +1323,7 @@ void WINAPI __wine_vxd_win32s( CONTEXT *context )
if (!atom || GlobalGetAtomNameA(atom, name, sizeof(name)))
{
TRACE("NtCreateSection: name=%s\n", atom? name : NULL);
TRACE("NtCreateSection: name=%s\n", atom? name : "");
result = CreateFileMappingA(hFile, NULL, protect,
size? size->u.HighPart : 0,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment