shithub: freetype+ttf2subf

Download patch

ref: 41aa41259133bbd21a858cc1402f45b426740df1
parent: e62c876bb0b86b8fa88fadf72d2621c79796a304
author: suzuki toshiya <[email protected]>
date: Wed Jun 15 16:02:49 EDT 2011

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

git/fs: mount .git/fs: mount/attach disallowed
--- 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 );
     }