Gerald Pfeifer : dbghelp: Do not try to ignore the return codes in PEV_ERROR and and PEV_ERROR1.
Module: wine Branch: master Commit: a910704ccf6814c4aa0de247f68058bbd9fc8697 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a910704ccf6814c4aa0de247f6... Author: Gerald Pfeifer <gerald(a)pfeifer.com> Date: Sat Jul 26 00:18:42 2014 +0200 dbghelp: Do not try to ignore the return codes in PEV_ERROR and and PEV_ERROR1. --- dlls/dbghelp/msc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/dbghelp/msc.c b/dlls/dbghelp/msc.c index 5e8804f..636655f 100644 --- a/dlls/dbghelp/msc.c +++ b/dlls/dbghelp/msc.c @@ -2924,8 +2924,8 @@ struct zvalue struct hash_table_elt elt; }; -#define PEV_ERROR(pev, msg) snprintf((pev)->error, sizeof((pev)->error), "%s", (msg)),FALSE -#define PEV_ERROR1(pev, msg, pmt) snprintf((pev)->error, sizeof((pev)->error), (msg), (pmt)),FALSE +#define PEV_ERROR(pev, msg) snprintf((pev)->error, sizeof((pev)->error), "%s", (msg)) +#define PEV_ERROR1(pev, msg, pmt) snprintf((pev)->error, sizeof((pev)->error), (msg), (pmt)) #if 0 static void pev_dump_stack(struct pevaluator* pev)
participants (1)
-
Alexandre Julliard