From cba6eb76e38ad440dad88083fba8ac88573b6655 Mon Sep 17 00:00:00 2001
From: Timm Fitschen <t.fitschen@indiscale.com>
Date: Tue, 7 Sep 2021 11:37:37 +0200
Subject: [PATCH] FIX typo in ccaosdb.cpp

---
 src/ccaosdb.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/ccaosdb.cpp b/src/ccaosdb.cpp
index 8145d92..61a5ed1 100644
--- a/src/ccaosdb.cpp
+++ b/src/ccaosdb.cpp
@@ -684,8 +684,8 @@ ERROR_RETURN_CODE(GENERIC_ERROR,
                     return 0;
                   })
 ERROR_RETURN_CODE(GENERIC_ERROR,
-                  int caosdb_entity_entity_get_boolean_value_list_value_at(
-                    caosdb_entity_entity *entity, bool *out, const int index),
+                  int caosdb_entity_entity_get_boolean_list_value_at(caosdb_entity_entity *entity,
+                                                                     bool *out, const int index),
                   {
                     auto *wrapped_entity = WRAPPED_ENTITY_CAST(entity);
                     auto value_list = wrapped_entity->GetValue().AsList();
@@ -939,7 +939,7 @@ ERROR_RETURN_CODE(GENERIC_ERROR,
                     return 0;
                   })
 ERROR_RETURN_CODE(GENERIC_ERROR,
-                  int caosdb_entity_property_get_boolean_value_list_value_at(
+                  int caosdb_entity_property_get_boolean_list_value_at(
                     caosdb_entity_property *property, bool *out, const int index),
                   {
                     auto *wrapped_property = WRAPPED_PROPERTY_CAST(property);
-- 
GitLab