Commit 62e6b50f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

adaptive: fix format string

parent 8d03dee9
...@@ -74,7 +74,8 @@ bool HTTPConnectionManager::connectChunk(Chunk *chunk) ...@@ -74,7 +74,8 @@ bool HTTPConnectionManager::connectChunk(Chunk *chunk)
if(chunk->getConnection()) if(chunk->getConnection())
return true; 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()); HTTPConnection *conn = getConnectionForHost(chunk->getHostname());
if(!conn) if(!conn)
......
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