From: Abhishek Lekshmanan Date: Thu, 14 Jan 2016 13:51:32 +0000 (+0100) Subject: pybind: remove extraneous semicolon in method X-Git-Tag: v10.0.3~50^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F7235%2Fhead;p=ceph.git 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 --- 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,