From 3718e83ab57fb73c7d5ac2127e1ea83b0de3ca82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Tue, 13 Sep 2016 14:38:50 +0200 Subject: [PATCH] fix error message --- PVE/Storage.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/Storage.pm b/PVE/Storage.pm index adaa380..4fcda5a 100755 --- a/PVE/Storage.pm +++ b/PVE/Storage.pm @@ -710,7 +710,7 @@ sub vdisk_free { if ($basename && defined($basevmid) && $basevmid == $vmid && $basename eq $name) { die "base volume '$volname' is still in use " . - "(use by '$tmpvolname')\n"; + "(used by '$tmpvolname')\n"; } } }