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

GCC12.2 emits a warning here.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
This commit is contained in:
Eric Pouech 2022-09-27 11:37:24 +02:00 committed by Alexandre Julliard
parent 1316383268
commit 6b1f051513

View file

@ -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,