From 6ed43d81dc22aea1f490af6d9776a6413415de3c Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Thu, 31 Oct 2019 07:36:27 +0100 Subject: [PATCH] cleanup: omit module prefix for call to methods in same module Signed-off-by: Thomas Lamprecht --- PVE/Storage.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PVE/Storage.pm b/PVE/Storage.pm index 298976f..1a38d07 100755 --- a/PVE/Storage.pm +++ b/PVE/Storage.pm @@ -538,8 +538,8 @@ sub abs_filesystem_path { my ($cfg, $volid) = @_; my $path; - if (PVE::Storage::parse_volume_id ($volid, 1)) { - PVE::Storage::activate_volumes($cfg, [ $volid ]); + if (parse_volume_id ($volid, 1)) { + activate_volumes($cfg, [ $volid ]); $path = PVE::Storage::path($cfg, $volid); } else { if (-f $volid) { -- 2.39.2