Michael Stefaniuc : dbghelp: 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: 4cf695e16444ff296c72499a7e557bddb1f5338b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=4cf695e16444ff296c72499a7e557bddb1f5338b

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

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

---

 dlls/dbghelp/path.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/dbghelp/path.c b/dlls/dbghelp/path.c
index 1b494da..f16eb00 100644
--- a/dlls/dbghelp/path.c
+++ b/dlls/dbghelp/path.c
@@ -78,8 +78,8 @@ HANDLE WINAPI FindDebugInfoFileEx(PCSTR FileName, PCSTR SymbolPath,
                                   PFIND_DEBUG_FILE_CALLBACK Callback,
                                   PVOID CallerData)
 {
-    FIXME("(%s %s %p %p %p): stub\n", 
-          debugstr_a(FileName), debugstr_a(SymbolPath), debugstr_a(DebugFilePath), Callback, CallerData);
+    FIXME("(%s %s %s %p %p): stub\n", debugstr_a(FileName), debugstr_a(SymbolPath),
+            debugstr_a(DebugFilePath), Callback, CallerData);
     return NULL;
 }
 




More information about the wine-cvs mailing list