]> granicus.if.org Git - postgresql/commitdiff
Fix perl thinko in commit fed6df486dca
authorAndrew Dunstan <andrew@dunslane.net>
Tue, 2 May 2017 12:20:11 +0000 (08:20 -0400)
committerAndrew Dunstan <andrew@dunslane.net>
Tue, 2 May 2017 12:24:06 +0000 (08:24 -0400)
Report and fix from Vaishnavi Prabakaran

Backpatch to 9.4 like original.

src/tools/msvc/vcregress.pl

index c23cbdb96834711bd03e19a34b6999939024f58c..0e96d03aa291cf301e4b74d6d86a7ebc90de65d4 100644 (file)
@@ -88,7 +88,7 @@ my $proc = $command{$what};
 
 exit 3 unless $proc;
 
-&$proc(@_);
+&$proc(@ARGV);
 
 exit 0;