From d99a2b6d0a4d0b2f5ba6a1f1637d6cb88c5c9184 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 16 Oct 2012 16:08:58 +0200 Subject: avutil/tree: Drop debug messages that clutter the output --- libavutil/tree.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'libavutil/tree.c') 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) -- cgit v1.2.3