rbd-fuse: fix for loop in open_rbd_image()

Remove uninitialized usage of 'int i' as i++ from 'for' loop.
The variale 'i' is never used in this loop and initialized
before the next use with 0.

Related warning from clang++:

rbd_fuse/rbd-fuse.c:141:36: warning: variable 'i' is uninitialized
when used here [-Wuninitialized]
        for (im = rbd_images; im != NULL; i++, im = im->next) {

Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
This commit is contained in:
Danny Al-Gaaf 2013-02-06 12:17:02 +01:00 committed by Sage Weil
parent db0dbe5db8
commit 3acc4d2cfe

View File

@ -138,7 +138,7 @@ open_rbd_image(const char *image_name)
return -1;
// relies on caller to keep rbd_images up to date
for (im = rbd_images; im != NULL; i++, im = im->next) {
for (im = rbd_images; im != NULL; im = im->next) {
if (strcmp(im->image_name, image_name) == 0) {
break;
}