diff options
author | cypherpunks <cypherpunks@torproject.org> | 2016-12-15 10:49:12 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-12-16 10:52:14 -0500 |
commit | 44db6461b59e849617093ea2b93a29bd707b8814 (patch) | |
tree | 793aafc1e209e954be0a801c2c1235fdf18c176e /scripts | |
parent | f43e56a6d0317d062b23faa8a1835145dbf78fcf (diff) | |
download | tor-44db6461b59e849617093ea2b93a29bd707b8814.tar.gz tor-44db6461b59e849617093ea2b93a29bd707b8814.zip |
Restrict unsafe constructs and enable all warnings
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/maint/checkSpace.pl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/maint/checkSpace.pl b/scripts/maint/checkSpace.pl index 724b5a5860..950936115b 100755 --- a/scripts/maint/checkSpace.pl +++ b/scripts/maint/checkSpace.pl @@ -1,4 +1,7 @@ -#!/usr/bin/perl -w +#!/usr/bin/perl + +use strict; +use warnings; my $C = 0; |