Commit 9583c113 authored by Alexandre Julliard's avatar Alexandre Julliard

dbghelp: Don't print garbage chars in ERR message.

parent e4253fd8
......@@ -2444,8 +2444,8 @@ static BOOL codeview_process_info(const struct process* pcs,
break;
}
default:
ERR("Unknown CODEVIEW signature %.4s in module %s\n",
(const char*)signature, debugstr_w(msc_dbg->module->module.ModuleName));
ERR("Unknown CODEVIEW signature %08x in module %s\n",
*signature, debugstr_w(msc_dbg->module->module.ModuleName));
break;
}
if (ret)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment