aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2015-11-19 02:42:02 -0500
committerAndrew Dunstan <andrew@dunslane.net>2015-11-19 02:42:02 -0500
commitf11c557e92c50d3d613d1173c15feb5310ba4744 (patch)
treed69b98796b085cb72c6fe667bea11fa785df62fb
parentc2d5657c0f6f8ae9894205551354eca796f8b11c (diff)
downloadpostgresql-f11c557e92c50d3d613d1173c15feb5310ba4744.tar.gz
postgresql-f11c557e92c50d3d613d1173c15feb5310ba4744.zip
fix a perl typo
-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 5d3ad4dfd8a..df1348bbe13 100644
--- a/src/tools/msvc/vcregress.pl
+++ b/src/tools/msvc/vcregress.pl
@@ -208,7 +208,7 @@ sub bincheck
my @bin_dirs = glob("$topdir/src/bin/*");
# Process each test
- foreach my $dir (@$bin_dirs)
+ foreach my $dir (@bin_dirs)
{
next unless -d "$dir/t";
my $status = tap_check($dir);