Commit e1f4cd2d authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen

libmp4: Use a portable format specified for uintmax_t

parent 133a89b5
......@@ -4106,7 +4106,7 @@ static void MP4_BoxDumpStructure_Internal( stream_t *s,
}
snprintf( &str[i_level * 4], sizeof(str) - 4*i_level,
"+ %4.4s size %"PRIu64" offset %ju%s",
"+ %4.4s size %"PRIu64" offset %" PRIuMAX "%s",
(char*)&i_displayedtype, p_box->i_size,
(uintmax_t)p_box->i_pos,
p_box->e_flags & BOX_FLAG_INCOMPLETE ? " (\?\?\?\?)" : "" );
......
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