mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
avutil/tree: clean up pointer incompatibility warnings
Commit 7c8fcbbde3a299096974f9061c8b5be0e526f4c2 introduced some warnings that get triggered on the test build. This should fix them. Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
This commit is contained in:
parent
6498b34bba
commit
bbd6bc6bd0
@ -202,9 +202,9 @@ static void print(AVTreeNode *t, int depth)
|
|||||||
av_log(NULL, AV_LOG_ERROR, "NULL\n");
|
av_log(NULL, AV_LOG_ERROR, "NULL\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
static int cmp(void *a, const void *b)
|
static int cmp(const void *a, const void *b)
|
||||||
{
|
{
|
||||||
return (uint8_t *) a - (const uint8_t *) b;
|
return (const uint8_t *) a - (const uint8_t *) b;
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user