ntdll: Fix printing NULL strings.

oldstable
Francois Gouget 2011-09-19 23:27:48 +02:00 committed by Alexandre Julliard
parent ada3d57e83
commit 17e62a5603
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ NTSTATUS WINAPI RtlQueryAtomInAtomTable( RTL_ATOM_TABLE table, RTL_ATOM atom, UL
}
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;
}