dbghelp: Do not try to ignore the return codes in PEV_ERROR and and PEV_ERROR1.

This commit is contained in:
Gerald Pfeifer 2014-07-26 00:18:42 +02:00 committed by Alexandre Julliard
parent 25bf35243e
commit a910704ccf
1 changed files with 2 additions and 2 deletions

View File

@ -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)