From: Sage Weil Date: Thu, 14 Jan 2016 14:22:48 +0000 (-0500) Subject: pybind/rbd.pyx: drop stray semicolon X-Git-Tag: v10.0.3~51 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6a309c81bc9a23aaafd29479e1d2ef88fec75735;p=ceph.git pybind/rbd.pyx: drop stray semicolon Signed-off-by: Sage Weil --- 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,