imap: Fixed line length warning

This commit is contained in:
Steve Holme 2013-12-31 12:16:33 +00:00
parent 60bd22620a
commit 34365e4b03
1 changed files with 2 additions and 1 deletions

View File

@ -1494,7 +1494,8 @@ static CURLcode imap_state_fetch_resp(struct connectdata *conn, int imapcode,
}
if(parsed) {
infof(data, "Found %" CURL_FORMAT_CURL_OFF_TU " bytes to download\n", size);
infof(data, "Found %" CURL_FORMAT_CURL_OFF_TU " bytes to download\n",
size);
Curl_pgrsSetDownloadSize(data, size);
if(pp->cache) {