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

Michael Niedermayer git at videolan.org
Tue May 14 01:55:00 CEST 2013


ffmpeg | branch: release/1.0 | Michael Niedermayer <michaelni at gmx.at> | Tue Oct 30 22:34:36 2012 +0100| [25881786697d721bd5b112c4f375c7e68d3c9c4b] | committer: Michael Niedermayer

tree-test: fix printf() types

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit 6c49562d790e9068ddcbb36197d7b24ab10c6274)

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

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

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

diff --git a/libavutil/tree.c b/libavutil/tree.c
index 745dd8a..207b6a1 100644
--- a/libavutil/tree.c
+++ b/libavutil/tree.c
@@ -211,7 +211,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_mallocz(av_tree_node_size);
         av_tree_insert(&root, (void *) (j + 1), cmp, &node);
@@ -219,7 +219,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