avoid Exporter warning

Else we get the following warning:

Subroutine PVE::ProcFSTools::getcwd redefined at /usr/share/perl/5.20/Exporter.pm line 66.
 at /usr/share/perl5/PVE/ProcFSTools.pm line 9.
This commit is contained in:
Dietmar Maurer 2015-09-09 09:10:15 +02:00
parent 1fdc4565ef
commit b78e40c095

View File

@ -6,7 +6,7 @@ use POSIX;
use Time::HiRes qw (gettimeofday); use Time::HiRes qw (gettimeofday);
use IO::File; use IO::File;
use PVE::Tools; use PVE::Tools;
use Cwd; use Cwd qw();
my $clock_ticks = POSIX::sysconf(&POSIX::_SC_CLK_TCK); my $clock_ticks = POSIX::sysconf(&POSIX::_SC_CLK_TCK);