aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2019-02-05 15:16:55 -0500
committerAndrew Dunstan <andrew@dunslane.net>2019-02-05 15:19:08 -0500
commiteae78da2b451c88d9206a1db4f01578f2e4a3b36 (patch)
treeec23dcfa97408a24f05b25d1c943fa44c6ccdb57 /src
parent4232a650bf1d762f9dbeeda0c92812d9091c6239 (diff)
downloadpostgresql-eae78da2b451c88d9206a1db4f01578f2e4a3b36.tar.gz
postgresql-eae78da2b451c88d9206a1db4f01578f2e4a3b36.zip
Keep perl style checker happy
It doesn't like code before "use strict;".
Diffstat (limited to 'src')
-rw-r--r--src/backend/catalog/genbki.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/catalog/genbki.pl b/src/backend/catalog/genbki.pl
index b7143785013..76dd5bbb6ac 100644
--- a/src/backend/catalog/genbki.pl
+++ b/src/backend/catalog/genbki.pl
@@ -14,15 +14,15 @@
#
#----------------------------------------------------------------------
+use strict;
+use warnings;
+
use File::Basename;
use File::Spec;
BEGIN { use lib File::Spec->rel2abs(dirname(__FILE__)); }
use Catalog;
-use strict;
-use warnings;
-
my @input_files;
our @include_path;
my $output_path = '';