From 4c53a02ac56e4e87631262fffc711e2e009561d7 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Fri, 28 Aug 2020 19:25:51 +0800 Subject: [PATCH] include/rados/librados.h: avoid redefinition of rados_object_list_item doxygen complains at seeing rados_object_list_item gets defined twice. so let's fix it. Signed-off-by: Kefu Chai --- src/include/rados/librados.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/rados/librados.h b/src/include/rados/librados.h index a95a2508e2d01..729fb7846e0ac 100644 --- a/src/include/rados/librados.h +++ b/src/include/rados/librados.h @@ -241,7 +241,7 @@ typedef void * rados_object_list_cursor; * The item populated by rados_object_list in * the results array. */ -typedef struct rados_object_list_item { +typedef struct { /// oid length size_t oid_length; -- 2.39.5