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:
parent
1316383268
commit
6b1f051513
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue