From 1be11f8bb8fdf368985d9e1c900b250541dc4791 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Thu, 30 Jan 2020 12:16:11 +0100 Subject: [PATCH] c++: fix return value type --- libmemcached/storage.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmemcached/storage.cc b/libmemcached/storage.cc index 079fba1d..61ca8270 100644 --- a/libmemcached/storage.cc +++ b/libmemcached/storage.cc @@ -74,7 +74,7 @@ static inline const char *storage_op_string(memcached_storage_action_t verb) return "set "; } -static inline uint8_t can_by_encrypted(const memcached_storage_action_t verb) +static inline bool can_by_encrypted(const memcached_storage_action_t verb) { switch (verb) { -- 2.30.2