From: Pavel Hrdina Date: Wed, 4 Oct 2017 14:33:06 +0000 (+0200) Subject: storage: Fix incorrect parenthesis placement X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=000e95045595ab5fd974e08dcc71b70a491965ed;p=libvirt.git storage: Fix incorrect parenthesis placement Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1498528 Signed-off-by: Pavel Hrdina --- diff --git a/src/storage/storage_util.c b/src/storage/storage_util.c index b94b3f397c..b23b6dd1d1 100644 --- a/src/storage/storage_util.c +++ b/src/storage/storage_util.c @@ -1843,7 +1843,7 @@ virStorageBackendUpdateVolInfo(virStorageVolDefPtr vol, withBlockVolFormat, VIR_STORAGE_VOL_OPEN_DEFAULT | VIR_STORAGE_VOL_OPEN_NOERROR, - readflags) < 0)) + readflags)) < 0) return ret; return 0;