From a910704ccf6814c4aa0de247f68058bbd9fc8697 Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Sat, 26 Jul 2014 00:18:42 +0200 Subject: [PATCH] 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 5e8804fd906..636655f48b5 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) -- 2.11.4.GIT