summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dunstan2019-02-05 20:16:55 +0000
committerAndrew Dunstan2023-01-19 16:53:19 +0000
commit524440579f838b30579f35d2045cc01b6f5070d8 (patch)
tree42c542f6b0a64590c5c98d79026b7ad5342c1586
parent96feeab4b3a91e1d544950e3c2d7804287e148af (diff)
Keep perl style checker happy
It doesn't like code before "use strict;". (cherry picked from commit ed2c2d063bd110f299211611b72a5dbe07a4d7be)
-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 71e1adfb89d..8619977f9c1 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 = '';