bug fix type mismatch on sds.h

This commit is contained in:
Israel Lot
2019-05-01 12:02:48 -04:00
parent 0d198a13af
commit fc8cef0ada
+1 -1
View File
@@ -297,7 +297,7 @@ sds sdsjoinsds(sds *argv, int argc, const char *sep, size_t seplen);
/* Low level functions exposed to the user API */
sds sdsMakeRoomFor(sds s, size_t addlen);
void sdsIncrLen(sds s, int incr);
void sdsIncrLen(sds s,ssize_t incr);
sds sdsRemoveFreeSpace(sds s);
size_t sdsAllocSize(sds s);
void *sdsAllocPtr(sds s);