[FFmpeg-cvslog] tree-test: fix printf() types

Michael Niedermayer git at videolan.org
Wed Oct 31 03:12:52 CET 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue Oct 30 22:34:36 2012 +0100| [6c49562d790e9068ddcbb36197d7b24ab10c6274] | committer: Michael Niedermayer

tree-test: fix printf() types

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6c49562d790e9068ddcbb36197d7b24ab10c6274
---

 libavutil/tree.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavutil/tree.c b/libavutil/tree.c
index 45ec8d9..c6ae23d 100644
--- a/libavutil/tree.c
+++ b/libavutil/tree.c
@@ -216,7 +216,7 @@ int main (void)
         print(root, 0);
             return -1;
         }
-        av_log(NULL, AV_LOG_ERROR, "inserting %4d\n", j);
+        av_log(NULL, AV_LOG_ERROR, "inserting %4d\n", (int)j);
         if (!node)
             node = av_tree_node_alloc();
         av_tree_insert(&root, (void *) (j + 1), cmp, &node);
@@ -224,7 +224,7 @@ int main (void)
         j = av_lfg_get(&prng) % 86294;
         {
             AVTreeNode *node2 = NULL;
-            av_log(NULL, AV_LOG_ERROR, "removing %4d\n", j);
+            av_log(NULL, AV_LOG_ERROR, "removing %4d\n", (int)j);
             av_tree_insert(&root, (void *) (j + 1), cmp, &node2);
             k = av_tree_find(root, (void *) (j + 1), cmp, NULL);
             if (k)



More information about the ffmpeg-cvslog mailing list