Commit 53acd1c1 authored by Daniel Black's avatar Daniel Black

maria: ma_recovery cppcheck va_start called twice

Per cppcheck, va_start is called twice which it is.

Remove the second instance.
parent f2fea295
......@@ -95,7 +95,6 @@ void eprint(FILE *trace_file __attribute__ ((unused)),
fputc('\n', trace_file);
if (trace_file != stderr)
{
va_start(args, format);
my_printv_error(HA_ERR_INITIALIZATION, format, MYF(0), args);
}
va_end(args);
......
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