summaryrefslogtreecommitdiff
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:24:06 -0400
commitb2ed1c8a467c2f8f91323a13696a900f31a3239d (patch)
tree6544130e68102fc955ef6f0e4c406dc49a3e6d59
parent1c88623465d849c90fa529dc661b0b16730cbe91 (diff)
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 c23cbdb9683..0e96d03aa29 100644
--- a/src/tools/msvc/vcregress.pl
+++ b/src/tools/msvc/vcregress.pl
@@ -88,7 +88,7 @@ my $proc = $command{$what};
exit 3 unless $proc;
-&$proc(@_);
+&$proc(@ARGV);
exit 0;