summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorAndrew Dunstan2017-05-02 12:20:11 +0000
committerAndrew Dunstan2017-05-02 12:24:06 +0000
commitb2ed1c8a467c2f8f91323a13696a900f31a3239d (patch)
tree6544130e68102fc955ef6f0e4c406dc49a3e6d59 /src/tools
parent1c88623465d849c90fa529dc661b0b16730cbe91 (diff)
Fix perl thinko in commit fed6df486dca
Report and fix from Vaishnavi Prabakaran Backpatch to 9.4 like original.
Diffstat (limited to 'src/tools')
-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;