Commit 04121b3e authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

netapi32: Print the debug string and not the pointer to it.

parent 4cf695e1
...@@ -88,9 +88,9 @@ NET_API_STATUS WINAPI NetServerEnumEx( ...@@ -88,9 +88,9 @@ NET_API_STATUS WINAPI NetServerEnumEx(
LMCSTR domain, LMCSTR domain,
LMCSTR FirstNameToReturn) LMCSTR FirstNameToReturn)
{ {
FIXME("Stub (%s %d %p %d %p %p %d %s %p)\n", debugstr_w(ServerName), FIXME("Stub (%s %d %p %d %p %p %d %s %s)\n",
Level, Bufptr, PrefMaxlen, EntriesRead, totalentries, servertype, debugstr_w(ServerName), Level, Bufptr, PrefMaxlen, EntriesRead, totalentries,
debugstr_w(domain), debugstr_w(FirstNameToReturn)); servertype, debugstr_w(domain), debugstr_w(FirstNameToReturn));
return ERROR_NO_BROWSER_SERVERS_FOUND; return ERROR_NO_BROWSER_SERVERS_FOUND;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment