diff options
author | misc <misc@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94> | 2010-08-16 23:48:00 +0000 |
---|---|---|
committer | misc <misc@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94> | 2010-08-16 23:48:00 +0000 |
commit | 33c69877b88a788287f5544ef9ba49856a23da8c (patch) | |
tree | 93e811990e979112db1b36289eab97a894b5e0d6 | |
parent | 51ccc06e9e2f3870ae37cd68ff16295bcadfb62e (diff) | |
download | draksnapshot-33c69877b88a788287f5544ef9ba49856a23da8c.tar draksnapshot-33c69877b88a788287f5544ef9ba49856a23da8c.tar.gz draksnapshot-33c69877b88a788287f5544ef9ba49856a23da8c.tar.bz2 draksnapshot-33c69877b88a788287f5544ef9ba49856a23da8c.tar.xz draksnapshot-33c69877b88a788287f5544ef9ba49856a23da8c.zip |
- add use strict, use warnings
git-svn-id: http://svn.mandriva.com/svn/soft/draksnapshot/trunk@270576 99302b65-d5f7-0310-b3dd-f8cd6f4e3d94
-rwxr-xr-x | draksnapshot-applet | 1 | ||||
-rwxr-xr-x | draksnapshot-restore | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/draksnapshot-applet b/draksnapshot-applet index d76a1a3..ed52478 100755 --- a/draksnapshot-applet +++ b/draksnapshot-applet @@ -21,6 +21,7 @@ ################################################################################ use strict; +use warnings; use POSIX ":sys_wait_h"; use Config; use lib qw(/usr/lib/libDrakX); diff --git a/draksnapshot-restore b/draksnapshot-restore index d59ec21..a0e5a86 100755 --- a/draksnapshot-restore +++ b/draksnapshot-restore @@ -20,7 +20,8 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # ################################################################################ - +use strict; +use warnings; use lib qw(/usr/lib/libDrakX); use standalone; #- warning, standalone must be loaded very first, for 'explanations' use interactive; |