Commit 0f2b6a09 authored by Francois Cartegnie's avatar Francois Cartegnie

demux: mp4: fix 32bits format string

parent f0380ff0
...@@ -1541,7 +1541,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args ) ...@@ -1541,7 +1541,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
} }
if ( asprintf( &psz_filename, "%s/covr/data[%"PRIu64"]", psz_roots[i_index - 1], if ( asprintf( &psz_filename, "%s/covr/data[%"PRIu64"]", psz_roots[i_index - 1],
i_box_count - 1 ) >= 0 ) (uint64_t) i_box_count - 1 ) >= 0 )
{ {
(*ppp_attach)[i_count++] = (*ppp_attach)[i_count++] =
vlc_input_attachment_New( psz_filename, psz_mime, "Cover picture", vlc_input_attachment_New( psz_filename, psz_mime, "Cover picture",
......
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