mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Fix indention after last commit.
Originally committed as revision 20538 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
edabf35926
commit
b154ed5abe
@ -138,10 +138,10 @@ void av_tree_destroy(AVTreeNode *t){
|
||||
#if 0
|
||||
void av_tree_enumerate(AVTreeNode *t, void *opaque, int (*cmp)(void *opaque, void *elem), int (*enu)(void *opaque, void *elem)){
|
||||
if(t){
|
||||
int v= cmp ? cmp(opaque, t->elem) : 0;
|
||||
if(v>=0) av_tree_enumerate(t->child[0], opaque, cmp, enu);
|
||||
if(v==0) enu(opaque, t->elem);
|
||||
if(v<=0) av_tree_enumerate(t->child[1], opaque, cmp, enu);
|
||||
int v= cmp ? cmp(opaque, t->elem) : 0;
|
||||
if(v>=0) av_tree_enumerate(t->child[0], opaque, cmp, enu);
|
||||
if(v==0) enu(opaque, t->elem);
|
||||
if(v<=0) av_tree_enumerate(t->child[1], opaque, cmp, enu);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user