]> granicus.if.org Git - postgresql/commitdiff
Keep perl style checker happy
authorAndrew Dunstan <andrew@dunslane.net>
Tue, 5 Feb 2019 20:16:55 +0000 (15:16 -0500)
committerAndrew Dunstan <andrew@dunslane.net>
Tue, 5 Feb 2019 20:18:53 +0000 (15:18 -0500)
It doesn't like code before "use strict;".

src/backend/catalog/genbki.pl

index acddef31cc4710ad5d9c12319ddbedf6793dcdab..8b6db2f0acfedb411a5d21445d8ebdc6981166f7 100644 (file)
 #
 #----------------------------------------------------------------------
 
+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 = '';