Commit 0c54013e authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

An Andres Garcia fix: add a typecast to make it work better

parent ca5d1e7a
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -98,7 +98,7 @@ int test(char *URL)

    /* and give the size of the upload (optional) */
    curl_easy_setopt(curl, CURLOPT_INFILESIZE_LARGE,
                     file_info.st_size);
                     (curl_off_t)file_info.st_size);

    /* Now run off and do what you've been told! */
    res = curl_easy_perform(curl);