aboutsummaryrefslogtreecommitdiff
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:22:45 -0400
commitf06caa09d9c539a2336434e6b521b6541c3da624 (patch)
tree79da9894e71cd05dacf4274dd9865428048b963e
parent1fdc3f6e8afe580c30515c70a04d074d527ae780 (diff)
downloadpostgresql-f06caa09d9c539a2336434e6b521b6541c3da624.tar.gz
postgresql-f06caa09d9c539a2336434e6b521b6541c3da624.zip
Fix perl thinko in commit fed6df486dca
Report and fix from Vaishnavi Prabakaran Backpatch to 9.4 like original.
-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 5a08a585a57..d757e176a7a 100644
--- a/src/tools/msvc/vcregress.pl
+++ b/src/tools/msvc/vcregress.pl
@@ -90,7 +90,7 @@ my $proc = $command{$what};
exit 3 unless $proc;
-&$proc(@_);
+&$proc(@ARGV);
exit 0;