5
0
mirror of git://git.proxmox.com/git/pve-storage.git synced 2024-12-23 17:34:34 +03:00

use warnings instead of global -w flag

This commit is contained in:
Dietmar Maurer 2013-10-01 13:07:46 +02:00
parent 4608c81e42
commit ffd6f2f3ab
3 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,8 @@
package PVE::Storage;
use strict;
use warnings;
use POSIX;
use IO::Select;
use IO::File;

View File

@ -3,6 +3,8 @@ libpve-storage-perl (3.0-14) unstable; urgency=low
* storage library: add new helper parse_volname()
* storage library: add new helper abs_filesystem_path()
* use warnings instead of global -w flag
-- Proxmox Support Team <support@proxmox.com> Tue, 01 Oct 2013 11:28:40 +0200

3
pvesm
View File

@ -1,6 +1,7 @@
#!/usr/bin/perl -w
#!/usr/bin/perl
use strict;
use warnings;
use Getopt::Long;
use Fcntl ':flock';
use File::Path;