From 977cb54f941c423eddbdc95c76fb41fde31f8afc Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 29 Oct 2012 22:21:25 +0100 Subject: [PATCH] tree: fix type used for testing the tree Signed-off-by: Michael Niedermayer --- libavutil/tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/tree.c b/libavutil/tree.c index 5803c2a881..45ec8d973a 100644 --- a/libavutil/tree.c +++ b/libavutil/tree.c @@ -210,7 +210,7 @@ int main (void) av_lfg_init(&prng, 1); for (i = 0; i < 10000; i++) { - int j = av_lfg_get(&prng) % 86294; + intptr_t j = av_lfg_get(&prng) % 86294; if (check(root) > 999) { av_log(NULL, AV_LOG_ERROR, "FATAL error %d\n", i); print(root, 0);