summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools')
-rwxr-xr-xsrc/tools/mark_pgdllimport.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/mark_pgdllimport.pl b/src/tools/mark_pgdllimport.pl
index 3152c1428bb..a09ec5a369e 100755
--- a/src/tools/mark_pgdllimport.pl
+++ b/src/tools/mark_pgdllimport.pl
@@ -34,7 +34,7 @@ for my $include_file (@ARGV)
{
my $needs_pgdllimport = 1;
- # By convention we declare global variables explicitly extern. We're
+ # By convention we declare global variables explicitly extern. We're
# looking for those not already marked with PGDLLIMPORT.
$needs_pgdllimport = 0 if $raw_line !~ /^extern\s+/
|| $raw_line =~ /PGDLLIMPORT/;