From 043c7fc0760736ea1bafcea8e64b7d2da9550c89 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Wed, 28 Dec 2011 10:42:11 +0100 Subject: [PATCH] winetest: Always report errors and fatal errors, even in quiet mode. --- programs/winetest/gui.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/programs/winetest/gui.c b/programs/winetest/gui.c index a9f346570d3..d5e3e275f3b 100644 --- a/programs/winetest/gui.c +++ b/programs/winetest/gui.c @@ -402,12 +402,6 @@ qNoOp (va_list ap) } static int -qFatal (va_list ap) -{ - exit (1); -} - -static int qAsk (va_list ap) { return MBdefault (va_arg (ap, int)); @@ -507,7 +501,7 @@ report (enum report_type t, ...) static r_fun_t * const quiet_funcs[] = {qNoOp, qNoOp, qNoOp, qNoOp, qNoOp, qNoOp, qNoOp, - qNoOp, qNoOp, qFatal, qAsk}; + qNoOp, textError, textFatal, qAsk}; static r_fun_t * const * funcs = NULL; switch (t) { -- 2.11.4.GIT