Skip to content
Snippets Groups Projects
Commit 043c7fc0 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard
Browse files

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

parent df1a5cb9
No related branches found
No related tags found
No related merge requests found
......@@ -401,12 +401,6 @@ qNoOp (va_list ap)
return 0;
}
static int
qFatal (va_list ap)
{
exit (1);
}
static int
qAsk (va_list ap)
{
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment