]> git.saurik.com Git - redis.git/blobdiff - src/t_list.c
Fix case in RPOPLPUSH.
[redis.git] / src / t_list.c
index 42e1d5873eb8af400d1288aa40f9f057784a9781..10e7f72c7137a336c4ec576aa21551d976c5f5e5 100644 (file)
@@ -618,7 +618,7 @@ void lremCommand(redisClient *c) {
  * since the element is not just returned but pushed against another list
  * as well. This command was originally proposed by Ezra Zygmuntowicz.
  */
-void rpoplpushcommand(redisClient *c) {
+void rpoplpushCommand(redisClient *c) {
     robj *sobj, *value;
     if ((sobj = lookupKeyWriteOrReply(c,c->argv[1],shared.nullbulk)) == NULL ||
         checkType(c,sobj,REDIS_LIST)) return;