Skip to content

Commit

Permalink
CWebServer: silence compiler warnings (thanks notspiff)
Browse files Browse the repository at this point in the history
  • Loading branch information
Montellese committed Feb 10, 2015
1 parent 1ec8074 commit bd1e315
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/network/WebServer.cpp
Expand Up @@ -598,7 +598,7 @@ int CWebServer::CreateMemoryDownloadResponse(IHTTPRequestHandler *handler, struc
// check if the range is valid
if (!responseRange.IsValid())
{
CLog::Log(LOGWARNING, "CWebServer: invalid response data with range start at %lld and end at %lld", responseRange.GetFirstPosition(), responseRange.GetLastPosition());
CLog::Log(LOGWARNING, "CWebServer: invalid response data with range start at %" PRId64 " and end at %" PRId64, responseRange.GetFirstPosition(), responseRange.GetLastPosition());
return SendErrorResponse(request.connection, MHD_HTTP_INTERNAL_SERVER_ERROR, request.method);
}

Expand Down

0 comments on commit bd1e315

Please sign in to comment.