]> git.proxmox.com Git - pve-container.git/commitdiff
Typo in resize_vm subroutine
authorEmmanuel Kasper <e.kasper@proxmox.com>
Tue, 6 Oct 2015 09:32:14 +0000 (11:32 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Tue, 6 Oct 2015 09:55:04 +0000 (11:55 +0200)
src/PVE/API2/LXC/Config.pm

index c3638502f2cc23688317b5abeafbabcd412d5c3c..cd1a9cd32030944c6239a8cad644ffc71c72c73c 100644 (file)
@@ -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;