]> git.saurik.com Git - redis.git/commitdiff
error generation format reverted to the new style after merge
authorantirez <antirez@gmail.com>
Wed, 22 Sep 2010 14:10:13 +0000 (16:10 +0200)
committerantirez <antirez@gmail.com>
Wed, 22 Sep 2010 14:10:13 +0000 (16:10 +0200)
src/t_zset.c

index eeb8dab340826325fc4ab9730bfdfcbc98a2f995..93ade5aaf01b6f07d7c976594bd1aa194486b285 100644 (file)
@@ -327,8 +327,7 @@ void zaddGenericCommand(redisClient *c, robj *key, robj *ele, double score, int
             score += *(double*)dictGetEntryVal(de);
 
         if (isnan(score)) {
-            addReplySds(c,
-                sdsnew("-ERR resulting score is not a number (NaN)\r\n"));
+            addReplyError(c,"resulting score is not a number (NaN)");
             /* Note that we don't need to check if the zset may be empty and
              * should be removed here, as we can only obtain Nan as score if
              * there was already an element in the sorted set. */