mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +03:00
Fix order of arguments to va_start()
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user