OSDN Git Service

cosmetic: indent
authorAurelien Jacobs <aurel@gnuage.org>
Sun, 4 Jan 2009 17:48:54 +0000 (17:48 +0000)
committerAurelien Jacobs <aurel@gnuage.org>
Sun, 4 Jan 2009 17:48:54 +0000 (17:48 +0000)
Originally committed as revision 16423 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavutil/tree.c

index bf485ab..008beb6 100644 (file)
@@ -129,9 +129,9 @@ void *av_tree_insert(AVTreeNode **tp, void *key, int (*cmp)(void *key, const voi
 
 void av_tree_destroy(AVTreeNode *t){
     if(t){
-    av_tree_destroy(t->child[0]);
-    av_tree_destroy(t->child[1]);
-    av_free(t);
+        av_tree_destroy(t->child[0]);
+        av_tree_destroy(t->child[1]);
+        av_free(t);
     }
 }