]> git.saurik.com Git - redis.git/commitdiff
Fix case and indent
authorPieter Noordhuis <pcnoordhuis@gmail.com>
Mon, 6 Dec 2010 15:04:42 +0000 (16:04 +0100)
committerPieter Noordhuis <pcnoordhuis@gmail.com>
Mon, 6 Dec 2010 15:04:42 +0000 (16:04 +0100)
src/t_list.c
tests/unit/type/list.tcl

index 866a6a3e2919524f063bd8e3ea0ea81052768aba..867e258a1e22ef6add9ca45925e381aebe55c75c 100644 (file)
@@ -705,7 +705,7 @@ void blockForKeys(redisClient *c, robj **keys, int numkeys, time_t timeout, robj
     c->bpop.target = target;
 
     if (target != NULL) {
-      incrRefCount(target);
+        incrRefCount(target);
     }
 
     for (j = 0; j < numkeys; j++) {
index 8ac128c5957bace0ad9b6cdbcee4e7790310b302..6b128b726974107de7dec74f3507d8719568f0e4 100644 (file)
@@ -205,7 +205,7 @@ start_server {
         assert_equal {foo} [r lrange target2 0 -1]
     }
 
-    test "linked BRPOPLPUSH" {
+    test "Linked BRPOPLPUSH" {
       set rd1 [redis_deferring_client]
       set rd2 [redis_deferring_client]
 
@@ -221,7 +221,7 @@ start_server {
       assert_equal {foo} [r lrange list3 0 -1]
     }
 
-    test "circular BRPOPLPUSH" {
+    test "Circular BRPOPLPUSH" {
       set rd1 [redis_deferring_client]
       set rd2 [redis_deferring_client]
 
@@ -236,7 +236,7 @@ start_server {
       assert_equal {} [r lrange list2 0 -1]
     }
 
-    test "self-referential BRPOPLPUSH" {
+    test "Self-referential BRPOPLPUSH" {
       set rd [redis_deferring_client]
 
       r del blist