Skip to content
Snippets Groups Projects
Commit 3e23f5dd authored by Johannes Kauffmann's avatar Johannes Kauffmann Committed by Jean-Baptiste Kempf
Browse files

demux: adaptive: use size_t format specifier

parent e0a1248f
No related branches found
No related tags found
Loading
......@@ -136,13 +136,13 @@ class adaptive::http::LibVLCHTTPSource : public adaptive::AbstractSource
{
if(range.getEndByte() > 0)
{
if (vlc_http_msg_add_header(req, "Range", "bytes=%" PRIuMAX "-%" PRIuMAX,
if (vlc_http_msg_add_header(req, "Range", "bytes=%zu-%zu",
range.getStartByte(), range.getEndByte()))
return -1;
}
else
{
if (vlc_http_msg_add_header(req, "Range", "bytes=%" PRIuMAX "-",
if (vlc_http_msg_add_header(req, "Range", "bytes=%zu-",
range.getStartByte()))
return -1;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment