From 8548ddc61b5858b6466e69f66a6b1a7ea9daef06 Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Mon, 5 Aug 2019 12:14:58 +0900 Subject: Fix inconsistencies and typos in the tree, take 9 This addresses more issues with code comments, variable names and unreferenced variables. Author: Alexander Lakhin Discussion: https://postgr.es/m/7ab243e0-116d-3e44-d120-76b3df7abefd@gmail.com --- src/tools/msvc/Project.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/tools/msvc/Project.pm') diff --git a/src/tools/msvc/Project.pm b/src/tools/msvc/Project.pm index 0d3554659b0..b5d1dc6e89a 100644 --- a/src/tools/msvc/Project.pm +++ b/src/tools/msvc/Project.pm @@ -230,8 +230,7 @@ sub AddDir if ($filter eq "LIBOBJS") { no warnings qw(once); - if (grep(/$p/, @main::pgportfiles, @main::pgcommonfiles) - == 1) + if (grep(/$p/, @main::pgportfiles) == 1) { $p =~ s/\.c/\.o/; $matches .= $p . " "; -- cgit v1.2.3