Commit 043c7fc0 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

winetest: Always report errors and fatal errors, even in quiet mode.

parent df1a5cb9
......@@ -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) {
......
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