From: Pieter Noordhuis Date: Fri, 10 Dec 2010 11:06:24 +0000 (+0100) Subject: Typo X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/586500c0ef32f480dba9bc10aedb3f72bd525118?ds=inline Typo --- diff --git a/src/t_string.c b/src/t_string.c index b41a1522..dcb37e55 100644 --- a/src/t_string.c +++ b/src/t_string.c @@ -88,7 +88,7 @@ static int getBitOffsetFromArgument(redisClient *c, robj *o, size_t *offset) { if (getLongLongFromObjectOrReply(c,o,&loffset,err) != REDIS_OK) return REDIS_ERR; - /* Limit offset to SIZE_T_MAX or 1GB in bytes */ + /* Limit offset to SIZE_T_MAX or 512MB in bytes */ if ((loffset < 0) || ((unsigned long long)loffset >= (unsigned)SIZE_T_MAX) || ((unsigned long long)loffset >> 3) >= (512*1024*1024))