Commit a910704c authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

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

parent 25bf3524
......@@ -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)
......
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