From 386834ca9a217be578c9a6e79fc1c77c1f08338b Mon Sep 17 00:00:00 2001 From: Abhishek Lekshmanan Date: Thu, 14 Jan 2016 14:51:32 +0100 Subject: [PATCH] pybind: remove extraneous semicolon in method A semicolon on `rbd_build_object_map` method was causing build failures in current master Fixes: #14371 Signed-off-by: Abhishek Lekshmanan --- src/pybind/rbd.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/rbd.pyx b/src/pybind/rbd.pyx index 6be015c75008..a03d97578d3a 100644 --- a/src/pybind/rbd.pyx +++ b/src/pybind/rbd.pyx @@ -148,7 +148,7 @@ cdef extern from "rbd/librbd.h" nogil: int rbd_snap_set(rbd_image_t image, const char *snapname) int rbd_flatten(rbd_image_t image) int rbd_rebuild_object_map(rbd_image_t image, librbd_progress_fn_t cb, - void *cbdata); + void *cbdata) ssize_t rbd_list_children(rbd_image_t image, char *pools, size_t *pools_len, char *images, size_t *images_len) ssize_t rbd_list_lockers(rbd_image_t image, int *exclusive, -- 2.47.3