Commit 41aa41259133bbd21a858cc1402f45b426740df1

suzuki toshiya 2011-06-15T20:02:49

Fix wrong indents in src/cache/ftcmru.c.

diff --git a/src/cache/ftcmru.c b/src/cache/ftcmru.c
index 5b11346..dc8b4cc 100644
--- a/src/cache/ftcmru.c
+++ b/src/cache/ftcmru.c
@@ -161,7 +161,7 @@
       *plist = NULL;
     }
     else if ( node == first )
-        *plist = next;
+      *plist = next;
   }
 
 
@@ -264,14 +264,14 @@
         list->clazz.node_done( node, list->data );
     }
     else if ( FT_ALLOC( node, list->clazz.node_size ) )
-        goto Exit;
+      goto Exit;
 
     error = list->clazz.node_init( node, key, list->data );
     if ( error )
       goto Fail;
 
-      FTC_MruNode_Prepend( &list->nodes, node );
-      list->num_nodes++;
+    FTC_MruNode_Prepend( &list->nodes, node );
+    list->num_nodes++;
 
   Exit:
     *anode = node;
@@ -316,7 +316,7 @@
 
 
       if ( list->clazz.node_done )
-       list->clazz.node_done( node, list->data );
+        list->clazz.node_done( node, list->data );
 
       FT_FREE( node );
     }