Commit f81c966d authored by Alvaro Herrera's avatar Alvaro Herrera

Fix order of arguments to va_start()

parent b41fb650
......@@ -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
......
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