maria: ma_recovery cppcheck va_start called twice

Per cppcheck, va_start is called twice which it is.

Remove the second instance.
This commit is contained in:
Daniel Black 2021-01-21 16:20:57 +11:00
parent f2fea295b4
commit 53acd1c1d8

View File

@ -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);