summaryrefslogtreecommitdiff
path: root/libavutil/tree.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-10-16 16:08:58 +0200
committerDiego Biurrun <diego@biurrun.de>2013-07-29 19:20:27 +0200
commitd99a2b6d0a4d0b2f5ba6a1f1637d6cb88c5c9184 (patch)
treee7dba5073c1bcd9fdcc4dedd52bfd361acaee82a /libavutil/tree.c
parent10db1a9bca46b0f760a1263d47142b2f57e195d7 (diff)
avutil/tree: Drop debug messages that clutter the output
Diffstat (limited to 'libavutil/tree.c')
-rw-r--r--libavutil/tree.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavutil/tree.c b/libavutil/tree.c
index 72d7f40abc..aaf2851b10 100644
--- a/libavutil/tree.c
+++ b/libavutil/tree.c
@@ -224,7 +224,6 @@ int main(void)
print(root, 0);
return -1;
}
- av_log(NULL, AV_LOG_ERROR, "inserting %4d\n", j);
if (!node)
node = av_tree_node_alloc();
av_tree_insert(&root, (void *)(j + 1), cmp, &node);
@@ -232,7 +231,6 @@ int main(void)
j = av_lfg_get(&prng) % 86294;
{
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)