CVS: winex/dlls/dbghelp pe_module.c,1.4,1.5
[email protected] 14 Dec 2007 19:13:27 -0000
| Newsgroups | gmane.comp.emulators.winex.cvs |
|---|---|
| Message-ID | <[email protected]> |
Subject: winex/dlls/dbghelp pe_module.c,1.4,1.5Update of /var/lib/cvsd/cvsroot/winex/dlls/dbghelp
In directory agravaine:/tmp/cvs-serv12207/dlls/dbghelp
Modified Files:
pe_module.c
Log Message:
added a message on PDB load failure
- checked in the wrong version of the patch by accident. This one uses debugstr_a() instead of directly printing the module name.
Index: pe_module.c
===================================================================
RCS file: /var/lib/cvsd/cvsroot/winex/dlls/dbghelp/pe_module.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- pe_module.c 7 Dec 2007 15:10:35 -0000 1.4
+++ pe_module.c 14 Dec 2007 19:13:25 -0000 1.5
@@ -325,7 +325,7 @@
*/
if (!ret)
- ERR("loading debug information failed for module '%s'\n", module_name);
+ ERR("loading debug information failed for module '%s'\n", debugstr_a(module_name));
}
/* FIXME shouldn't we check that? if (!module_get_debug(pcs, module))l */
TRACE("loading public debug symbols\n");