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

Michael Stefaniuc mstefani at redhat.de
Wed Mar 21 17:34:22 CDT 2012


---
 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;
 }
 
-- 
1.7.7.6



More information about the wine-patches mailing list