diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-01-16 01:54:56 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-01-16 01:54:56 +0000 |
commit | 5d1e3d221085325dae4b87c1c5719fa59ad9af20 (patch) | |
tree | c8dc5cf14fdb121767c63b9bc198b7131397c9dd | |
parent | 3f161c7eab3b65d80d51876916d3f169d50acfc5 (diff) | |
download | ffmpeg-5d1e3d221085325dae4b87c1c5719fa59ad9af20.tar.gz |
Print removing of nodes in the test code.
Originally committed as revision 11534 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/tree.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/tree.c b/libavutil/tree.c index a7bd1b4bcc..1a102e4e95 100644 --- a/libavutil/tree.c +++ b/libavutil/tree.c @@ -173,6 +173,7 @@ int main(void){ k= av_tree_find(root, (void*)(j+1), cmp, NULL); if(k){ AVTreeNode *node2=NULL; + av_log(NULL, AV_LOG_ERROR, "removing %4d\n", j); av_tree_insert(&root, (void*)(j+1), cmp, &node2); k= av_tree_find(root, (void*)(j+1), cmp, NULL); if(k) |