Module: wine Branch: master Commit: b95574e2867f89d53d7f76d8b088f6e02b539ec5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b95574e2867f89d53d7f76d8b0...
Author: André Hentschel nerv@dawncrow.de Date: Mon Jan 9 23:23:09 2012 +0100
dbghelp: No need for WINE_ prefixed ERR.
---
dlls/dbghelp/pe_module.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/dbghelp/pe_module.c b/dlls/dbghelp/pe_module.c index ba7f1a2..79a4d90 100644 --- a/dlls/dbghelp/pe_module.c +++ b/dlls/dbghelp/pe_module.c @@ -600,8 +600,8 @@ static BOOL pe_load_msc_debug_info(const struct process* pcs, struct module* mod if (nDbg != 1 || dbg->Type != IMAGE_DEBUG_TYPE_MISC || misc->DataType != IMAGE_DEBUG_MISC_EXENAME) { - WINE_ERR("-Debug info stripped, but no .DBG file in module %s\n", - debugstr_w(module->module.ModuleName)); + ERR("-Debug info stripped, but no .DBG file in module %s\n", + debugstr_w(module->module.ModuleName)); } else {