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

Alexandre Julliard julliard at winehq.org
Mon Mar 26 12:29:32 CDT 2012


Module: wine
Branch: master
Commit: 04121b3e020dc40193db1b6e89efc9e2233adb33
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=04121b3e020dc40193db1b6e89efc9e2233adb33

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Wed Mar 21 23:37:54 2012 +0100

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

---

 dlls/netapi32/netapi32.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/netapi32/netapi32.c b/dlls/netapi32/netapi32.c
index 58cd014..470adf0 100644
--- a/dlls/netapi32/netapi32.c
+++ b/dlls/netapi32/netapi32.c
@@ -88,10 +88,10 @@ NET_API_STATUS WINAPI NetServerEnumEx(
     LMCSTR domain,
     LMCSTR FirstNameToReturn)
 {
-    FIXME("Stub (%s %d %p %d %p %p %d %s %p)\n", debugstr_w(ServerName),
-     Level, Bufptr, PrefMaxlen, EntriesRead, totalentries, servertype,
-     debugstr_w(domain), debugstr_w(FirstNameToReturn));
-                                                                                
+    FIXME("Stub (%s %d %p %d %p %p %d %s %s)\n",
+           debugstr_w(ServerName), Level, Bufptr, PrefMaxlen, EntriesRead, totalentries,
+           servertype, debugstr_w(domain), debugstr_w(FirstNameToReturn));
+
     return ERROR_NO_BROWSER_SERVERS_FOUND;
 }
 




More information about the wine-cvs mailing list