From a50c70a305e64f7d045203011b88b437dd449157 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Wed, 22 Dec 2010 18:06:07 -0500 Subject: [PATCH] Fix another warning. --- src/FileDownload.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FileDownload.cpp b/src/FileDownload.cpp index a9a9678f4a..9a643f2195 100644 --- a/src/FileDownload.cpp +++ b/src/FileDownload.cpp @@ -201,7 +201,7 @@ void FileTransfer::StartTransfer( TransferType type, const RString &sURL, const } */ - vsHeaders.push_back( "Content-Length: " + ssprintf("%d",sRequestPayload.size()) ); + vsHeaders.push_back( "Content-Length: " + ssprintf("%zd",sRequestPayload.size()) ); RString sHeader; FOREACH_CONST( RString, vsHeaders, h )