diff options
author | Peter Eisentraut | 2016-12-04 17:00:00 +0000 |
---|---|---|
committer | Peter Eisentraut | 2017-01-05 17:34:48 +0000 |
commit | 933b46644c787ed0b763532951961361e9304095 (patch) | |
tree | 1c739f122fd27ed237f1bdebdb3066b3ad99d3ab /src/test/locale | |
parent | 175ff6598e014b2fe84c06fa443161294fc2eed0 (diff) |
Use 'use strict' in all Perl programs
Diffstat (limited to 'src/test/locale')
-rwxr-xr-x | src/test/locale/sort-test.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/locale/sort-test.pl b/src/test/locale/sort-test.pl index ce7b93c571c..cb7e4934e44 100755 --- a/src/test/locale/sort-test.pl +++ b/src/test/locale/sort-test.pl @@ -1,4 +1,6 @@ #! /usr/bin/perl + +use strict; use locale; open(INFILE, "<$ARGV[0]"); |