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

autohinter-properties
suzuki toshiya 14 years ago
parent e62c876bb0
commit 41aa412591
  1. 10
      src/cache/ftcmru.c

10
src/cache/ftcmru.c vendored

@ -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 );
}

Loading…
Cancel
Save