mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-24 18:55:04 +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_list ap;
|
||||||
|
|
||||||
va_start(fmt, ap);
|
va_start(ap, fmt);
|
||||||
#ifndef FRONTEND
|
#ifndef FRONTEND
|
||||||
write_stderr(fmt, ap);
|
write_stderr(fmt, ap);
|
||||||
#else
|
#else
|
||||||
|
Loading…
Reference in New Issue
Block a user