From 08ca3955036a5dcd72bfe264921ec205e8914119 Mon Sep 17 00:00:00 2001 From: Fabian Ebner Date: Wed, 8 Sep 2021 13:26:51 +0200 Subject: [PATCH] btrfs: style: add missing semicolon Signed-off-by: Fabian Ebner --- PVE/Storage/BTRFSPlugin.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/Storage/BTRFSPlugin.pm b/PVE/Storage/BTRFSPlugin.pm index a1e5b98..dbc1244 100644 --- a/PVE/Storage/BTRFSPlugin.pm +++ b/PVE/Storage/BTRFSPlugin.pm @@ -309,7 +309,7 @@ sub alloc_image { my ($class, $storeid, $scfg, $vmid, $fmt, $name, $size) = @_; if ($fmt ne 'raw' && $fmt ne 'subvol') { - return $class->SUPER::alloc_image($storeid, $scfg, $vmid, $fmt, $name, $size) + return $class->SUPER::alloc_image($storeid, $scfg, $vmid, $fmt, $name, $size); } # From Plugin.pm: