Commit 7ecd874b authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Curl_write: remove unneeded typecast

parent 49c37e6c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -264,7 +264,7 @@ CURLcode Curl_write(struct connectdata *conn,

  default:
    /* we got a specific curlcode, forward it */
    return (CURLcode)curlcode;
    return curlcode;
  }
}