From: Radoslaw Zarzynski Date: Thu, 25 Jun 2020 00:07:19 +0000 (+0200) Subject: test: fix unused variable warning in test_ino_release_cb.cc. X-Git-Tag: wip-pdonnell-testing-20200918.022351~836^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=4071ac6d78bb0d0157f017a7939c04cf1e42059d;p=ceph-ci.git test: fix unused variable warning in test_ino_release_cb.cc. Signed-off-by: Radoslaw Zarzynski --- diff --git a/src/test/fs/test_ino_release_cb.cc b/src/test/fs/test_ino_release_cb.cc index 4294698a46d..61176fc1386 100644 --- a/src/test/fs/test_ino_release_cb.cc +++ b/src/test/fs/test_ino_release_cb.cc @@ -22,7 +22,7 @@ int main(int argc, char *argv[]) ceph_conf_read_file(cmount, NULL); ceph_init(cmount); - int ret = ceph_mount(cmount, NULL); + [[maybe_unused]] int ret = ceph_mount(cmount, NULL); assert(ret >= 0); ret = ceph_mkdir(cmount, DIRNAME, 0755); assert(ret >= 0);