Init image_name with NULL to fix:
rbd_fuse/rbd-fuse.c:57:63: warning: missing field 'image_name' initializer
[-Wmissing-field-initializers]
struct rbd_options rbd_options = {"/etc/ceph/ceph.conf", "rbd"};
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
#define MAX_RBD_IMAGES 128
struct rbd_openimage opentbl[MAX_RBD_IMAGES];
-struct rbd_options rbd_options = {"/etc/ceph/ceph.conf", "rbd"};
+struct rbd_options rbd_options = {"/etc/ceph/ceph.conf", "rbd", NULL};
#define rbdsize(fd) opentbl[fd].rbd_stat.rbd_info.size
#define rbdblksize(fd) opentbl[fd].rbd_stat.rbd_info.obj_size