Patch: fix a debug message in programs/winedbg/info.c

Sami Aario sami.aario at surfeu.fi
Mon Jan 26 15:22:07 CST 2004


As per this conversation:

>Sami Aario a écrit :
>> Hi,
>>
>> The debugger kept messing up my output because of a missing
>> newline. This patch fixes that. However, the condition checks for
>> first_dll, but the output says first_option. They can't both be right.
>> So which one should it be?

>It should be first_dll in both cases.
>A+

ChangeLog:
Fix a debug message.
-------------- next part --------------
Index: info.c
===================================================================
RCS file: /home/wine/wine/programs/winedbg/info.c,v
retrieving revision 1.11
diff -u -r1.11 info.c
--- info.c	15 Dec 2003 19:53:08 -0000	1.11
+++ info.c	26 Jan 2004 21:13:11 -0000
@@ -720,7 +720,7 @@
 
     if (DEBUG_GetSymbolValue("first_dll", -1, &val, FALSE) != gsv_found)
     {
-        DEBUG_Printf("Can't get first_option symbol");
+        DEBUG_Printf("Can't get first_dll symbol\n");
         return;
     }
     addr = (void*)DEBUG_ToLinear(&val.addr);


More information about the wine-patches mailing list