aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2011-05-15 18:45:26 -0400
committerAndrew Dunstan <andrew@dunslane.net>2011-05-15 18:45:26 -0400
commitec645ef346d2de2fb889f6b8a8d2fc70a4ea4971 (patch)
treeb804fd97d9337547b45346b34bb67857dea7d1ad /src
parent20bacc9560b29b33b6cad4e53c6a77e6c8a71c5d (diff)
downloadpostgresql-ec645ef346d2de2fb889f6b8a8d2fc70a4ea4971.tar.gz
postgresql-ec645ef346d2de2fb889f6b8a8d2fc70a4ea4971.zip
Fix bad macro call noticed by MSVC compiler.
Diffstat (limited to 'src')
-rw-r--r--src/test/regress/pg_regress.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c
index 1411ca4e400..28b05284753 100644
--- a/src/test/regress/pg_regress.c
+++ b/src/test/regress/pg_regress.c
@@ -2142,7 +2142,7 @@ regression_main(int argc, char *argv[], init_function ifunc, test_function tfunc
SYSTEMQUOTE "\"%s\" -C \"%s/%s\" DESTDIR=\"%s/install\" install >> \"%s/log/install.log\" 2>&1" SYSTEMQUOTE,
makeprog, top_builddir, sl->str, temp_install, outputdir);
#else
- fprintf(stderr, _("\n%s: --extra-install option not supported on this platform\n", progname));
+ fprintf(stderr, _("\n%s: --extra-install option not supported on this platform\n"), progname);
exit_nicely(2);
#endif