This variable in the unit test gets flagged by -Werror which is enabled
by default when compiling the unit tests in a container based
environment. Examining the code the warning appears correct and it
ought to be OK to simply remove this variable.
Signed-off-by: John Mulligan <jmulligan@redhat.com>
*/
static void fio_librgw_cleanup(struct thread_data *td)
{
- int r = 0;
-
dprint(FD_IO, "fio_librgw_cleanup\n");
/* cleanup specific data */
data->release_handles();
if (data->bucket_fh) {
- r = rgw_fh_rele(data->fs, data->bucket_fh, 0 /* flags */);
+ rgw_fh_rele(data->fs, data->bucket_fh, 0 /* flags */);
}
- r = rgw_umount(data->fs, RGW_UMOUNT_FLAG_NONE);
+ rgw_umount(data->fs, RGW_UMOUNT_FLAG_NONE);
librgw_shutdown(data->rgw_h);
td->io_ops_data = nullptr;
delete data;