]> git.ipfire.org Git - thirdparty/bacula.git/commitdiff
build: avoid warning with extra parenthesis
authornorbert.bizet <norbert.bizet@baculasystems.com>
Tue, 5 Sep 2023 16:02:59 +0000 (12:02 -0400)
committerEric Bollengier <eric@baculasystems.com>
Fri, 22 Mar 2024 09:30:10 +0000 (10:30 +0100)
bacula/src/stored/generic_driver.c

index e5bea443269e40ade070d41305d9d7d6ad63b003..3a19982c967182e063ba2c1b7e2023e4f37cad6b 100644 (file)
@@ -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 {