Commit 34365e4b authored by Steve Holme's avatar Steve Holme
Browse files

imap: Fixed line length warning

parent 60bd2262
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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) {