From: Michael Wallner Date: Thu, 30 Jan 2020 11:16:11 +0000 (+0100) Subject: c++: fix return value type X-Git-Tag: pre_cmake~2 X-Git-Url: https://git.m6w6.name/?p=awesomized%2Flibmemcached;a=commitdiff_plain;h=1be11f8bb8fdf368985d9e1c900b250541dc4791 c++: fix return value type --- 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) {