aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2011-07-23 19:33:17 -0400
committerAndrew Dunstan <andrew@dunslane.net>2011-07-23 19:33:17 -0400
commite399eb74d96270bf1d4a0bb9f4503cac3d90c1e2 (patch)
tree336b497fade1afb9b9e2af1d7ad7a916923b04e9 /src
parent79b3ca06d820032ad84446e0a021b56422172d86 (diff)
downloadpostgresql-e399eb74d96270bf1d4a0bb9f4503cac3d90c1e2.tar.gz
postgresql-e399eb74d96270bf1d4a0bb9f4503cac3d90c1e2.zip
Unbreak Windows builds broken by EDITOR_LINENUMBER_ARG change.
Diffstat (limited to 'src')
-rw-r--r--src/bin/psql/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c
index ad7a7da8163..aeabe5bf3c3 100644
--- a/src/bin/psql/command.c
+++ b/src/bin/psql/command.c
@@ -1808,7 +1808,7 @@ editFile(const char *fname, int lineno)
#else
if (lineno > 0)
sprintf(sys, SYSTEMQUOTE "\"%s\" %s%d \"%s\"" SYSTEMQUOTE,
- editorName, editor_lineno_switch, lineno, fname);
+ editorName, editor_lineno_arg, lineno, fname);
else
sprintf(sys, SYSTEMQUOTE "\"%s\" \"%s\"" SYSTEMQUOTE,
editorName, fname);