Skip to content
Snippets Groups Projects
Commit f81c966d authored by Alvaro Herrera's avatar Alvaro Herrera
Browse files

Fix order of arguments to va_start()

parent b41fb650
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ log_error(const char *fmt,...)
{
va_list ap;
va_start(fmt, ap);
va_start(ap, fmt);
#ifndef FRONTEND
write_stderr(fmt, ap);
#else
......
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