mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-12 18:34:36 +08: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…
Reference in New Issue
Block a user