ntdll: Fix printing NULL strings.
This commit is contained in:
parent
ada3d57e83
commit
17e62a5603
|
@ -164,7 +164,7 @@ NTSTATUS WINAPI RtlQueryAtomInAtomTable( RTL_ATOM_TABLE table, RTL_ATOM atom, UL
|
||||||
}
|
}
|
||||||
|
|
||||||
TRACE( "%p %x -> %s (%x)\n",
|
TRACE( "%p %x -> %s (%x)\n",
|
||||||
table, atom, len ? debugstr_wn(name, wlen / sizeof(WCHAR)) : NULL, status );
|
table, atom, len ? debugstr_wn(name, wlen / sizeof(WCHAR)) : "(null)", status );
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue