From 6c30be94c0e15021dc35962c6e1a6c5dbe36536c Mon Sep 17 00:00:00 2001 From: Emmanuel Kasper Date: Tue, 6 Oct 2015 11:32:14 +0200 Subject: [PATCH] Typo in resize_vm subroutine --- src/PVE/API2/LXC/Config.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/API2/LXC/Config.pm b/src/PVE/API2/LXC/Config.pm index c363850..cd1a9cd 100644 --- a/src/PVE/API2/LXC/Config.pm +++ b/src/PVE/API2/LXC/Config.pm @@ -252,7 +252,7 @@ __PACKAGE__->register_method({ $newsize += $size if $ext; $newsize = int($newsize); - die "unable to skrink disk size\n" if $newsize < $size; + die "unable to shrink disk size\n" if $newsize < $size; return if $size == $newsize; -- 2.39.5