From: Andrew Dunstan Date: Tue, 2 May 2017 12:20:11 +0000 (-0400) Subject: Fix perl thinko in commit fed6df486dca X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=f06caa09d9c539a2336434e6b521b6541c3da624;p=users%2Fbernd%2Fpostgres.git Fix perl thinko in commit fed6df486dca Report and fix from Vaishnavi Prabakaran Backpatch to 9.4 like original. --- diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl index 5a08a585a5..d757e176a7 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;