X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/5a86ab47995586f0a0ef18472eafd6e9131644c1..91c15ed1b51a0cd097e5c8b0d77edb07f460a866:/src/rdb.h diff --git a/src/rdb.h b/src/rdb.h index 0381c5b4..37f44745 100644 --- a/src/rdb.h +++ b/src/rdb.h @@ -54,7 +54,7 @@ #define REDIS_RDB_TYPE_HASH_ZIPLIST 13 /* Test if a type is an object type. */ -#define rdbIsObjectType(t) ((t >= 0 && t <= 4) || (t >= 9 && t <= 12)) +#define rdbIsObjectType(t) ((t >= 0 && t <= 4) || (t >= 9 && t <= 13)) /* Special RDB opcodes (saved/loaded with rdbSaveType/rdbLoadType). */ #define REDIS_RDB_OPCODE_EXPIRETIME_MS 252