projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b41fb65
)
Fix order of arguments to va_start()
author
Alvaro Herrera
<alvherre@alvh.no-ip.org>
Thu, 7 Jan 2016 23:32:14 +0000
(20:32 -0300)
committer
Alvaro Herrera
<alvherre@alvh.no-ip.org>
Thu, 7 Jan 2016 23:32:49 +0000
(20:32 -0300)
src/port/win32security.c
patch
|
blob
|
blame
|
history
diff --git
a/src/port/win32security.c
b/src/port/win32security.c
index 66796e0e286bdc0e03064eea4c890db1f9753f68..d3eba9a20b570cb682ccf61f69caf9a0dabcf783 100644
(file)
--- a/
src/port/win32security.c
+++ b/
src/port/win32security.c
@@
-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