mirror of https://github.com/mpv-player/mpv
mplayer: fix passing size_t as %d to printf()
This commit is contained in:
parent
52467b2ac9
commit
702962878b
|
@ -199,7 +199,7 @@ void merge_playlist_files(struct playlist *pl)
|
||||||
bstr_strip(bstr0(e->filename)).len != strlen(e->filename))
|
bstr_strip(bstr0(e->filename)).len != strlen(e->filename))
|
||||||
{
|
{
|
||||||
// %length%
|
// %length%
|
||||||
edl = talloc_asprintf_append_buffer(edl, "%%%d%%", strlen(e->filename));
|
edl = talloc_asprintf_append_buffer(edl, "%%%zd%%", strlen(e->filename));
|
||||||
}
|
}
|
||||||
edl = talloc_strdup_append_buffer(edl, e->filename);
|
edl = talloc_strdup_append_buffer(edl, e->filename);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue