Commit 65488614 authored by Julian Scheel's avatar Julian Scheel Committed by Jean-Baptiste Kempf

mmal/deinterlace: Fix build warning

Comparing signed to unsigned.
Signed-off-by: default avatarJulian Scheel <julian@jusst.de>
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent c465b5bc
......@@ -91,7 +91,7 @@ static int create_picture_pool(filter_t *filter)
goto out;
}
for (int i = 0; i < sys->output->buffer_num; i++) {
for (unsigned i = 0; i < sys->output->buffer_num; i++) {
picture_res.p_sys = calloc(1, sizeof(picture_sys_t));
if (!picture_res.p_sys) {
ret = -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment