Skip to content
Snippets Groups Projects
Commit 62e6b50f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

adaptive: fix format string

parent 8d03dee9
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,8 @@ bool HTTPConnectionManager::connectChunk(Chunk *chunk)
if(chunk->getConnection())
return true;
msg_Dbg(stream, "Retrieving %s @%ld", chunk->getUrl().c_str(), chunk->getStartByte());
msg_Dbg(stream, "Retrieving %s @%zu", chunk->getUrl().c_str(),
chunk->getStartByte());
HTTPConnection *conn = getConnectionForHost(chunk->getHostname());
if(!conn)
......
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