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:
parent
f2fea295b4
commit
53acd1c1d8
@ -95,7 +95,6 @@ void eprint(FILE *trace_file __attribute__ ((unused)),
|
|||||||
fputc('\n', trace_file);
|
fputc('\n', trace_file);
|
||||||
if (trace_file != stderr)
|
if (trace_file != stderr)
|
||||||
{
|
{
|
||||||
va_start(args, format);
|
|
||||||
my_printv_error(HA_ERR_INITIALIZATION, format, MYF(0), args);
|
my_printv_error(HA_ERR_INITIALIZATION, format, MYF(0), args);
|
||||||
}
|
}
|
||||||
va_end(args);
|
va_end(args);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user