diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2011-07-23 19:33:04 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2011-07-23 19:33:04 -0400 |
commit | 552a5c73e08b74968a5f1591c5f09dc8f519a173 (patch) | |
tree | 6d89e9309d6127817b3557def4354f97f97647b3 /src | |
parent | 70a488878f97eeec09356054fc161b9f8e914257 (diff) |
Unbreak Windows builds broken by EDITOR_LINENUMBER_ARG change.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 091a7a7e86a..afba6b31987 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -1803,7 +1803,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); |