tree: fix type used for testing the tree

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-10-29 22:21:25 +01:00
parent 1838961357
commit 977cb54f94
1 changed files with 1 additions and 1 deletions

View File

@ -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);