diff --git a/src/sds.c b/src/sds.c index c4f43603..39ad595e 100644 --- a/src/sds.c +++ b/src/sds.c @@ -67,8 +67,10 @@ static inline char sdsReqType(size_t string_size) { #if (LONG_MAX == LLONG_MAX) if (string_size < 1ll<<32) return SDS_TYPE_32; -#endif return SDS_TYPE_64; +#else + return SDS_TYPE_32; +#endif } /* Create a new sds string with the content specified by the 'init' pointer