aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2017-05-02 08:20:11 -0400
committerAndrew Dunstan <andrew@dunslane.net>2017-05-02 08:23:05 -0400
commitdf53413ba524a01cced9c12131606d84d52a0fc9 (patch)
tree338a0af749961640a541e174cf9683f3c7b9c5ab /src
parent9a8cc157c6e4724770168c589844539ccff2bd05 (diff)
downloadpostgresql-df53413ba524a01cced9c12131606d84d52a0fc9.tar.gz
postgresql-df53413ba524a01cced9c12131606d84d52a0fc9.zip
Fix perl thinko in commit fed6df486dca
Report and fix from Vaishnavi Prabakaran Backpatch to 9.4 like original.
Diffstat (limited to 'src')
-rw-r--r--src/tools/msvc/vcregress.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl
index 94b92a033dd..bd1b607b001 100644
--- a/src/tools/msvc/vcregress.pl
+++ b/src/tools/msvc/vcregress.pl
@@ -89,7 +89,7 @@ my $proc = $command{$what};
exit 3 unless $proc;
-&$proc(@_);
+&$proc(@ARGV);
exit 0;