From: norbert.bizet Date: Tue, 5 Sep 2023 16:02:59 +0000 (-0400) Subject: build: avoid warning with extra parenthesis X-Git-Tag: Release-15.0.2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=97966862fc6fdf9a594c7be1cd332df20abf211e;p=thirdparty%2Fbacula.git build: avoid warning with extra parenthesis --- diff --git a/bacula/src/stored/generic_driver.c b/bacula/src/stored/generic_driver.c index e5bea4432..3a19982c9 100644 --- a/bacula/src/stored/generic_driver.c +++ b/bacula/src/stored/generic_driver.c @@ -1150,7 +1150,7 @@ bool generic_driver::clean_cloud_volume(const char *VolumeName, cleanup_cb_type } } - return (ret|rtn == 0); + return ((ret|rtn) == 0); } struct get_cloud_volume_parts_list_read_cb_arg {