http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ada3d57
)
ntdll: Fix printing NULL strings.
author
Francois Gouget
<fgouget@free.fr>
Mon, 19 Sep 2011 21:27:48 +0000
(23:27 +0200)
committer
Alexandre Julliard
<julliard@winehq.org>
Tue, 20 Sep 2011 14:21:38 +0000
(16:21 +0200)
dlls/ntdll/atom.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/ntdll/atom.c
b/dlls/ntdll/atom.c
index 378956780e2821698b1fef894ee007034daa8e65..304b7f6d370af2456e5aa49ccd95127ec5314330 100644
(file)
--- a/
dlls/ntdll/atom.c
+++ b/
dlls/ntdll/atom.c
@@
-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;
}