mirror of
https://github.com/postgres/postgres.git
synced 2025-04-22 23:02:54 +03:00
Fix order of arguments to va_start()
This commit is contained in:
parent
b41fb65056
commit
f81c966d20
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user