From: Patrick Monnerat Date: Tue, 3 Oct 2017 10:03:46 +0000 (+0100) Subject: libcurl-tutorial: add casts in example to avoid compilation warnings. X-Git-Tag: curl-7_56_0~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ff6774ea6a03ae193f92e7175e9b96aaffb3f44c;p=curl libcurl-tutorial: add casts in example to avoid compilation warnings. --- diff --git a/docs/libcurl/libcurl-tutorial.3 b/docs/libcurl/libcurl-tutorial.3 index e93972424..187d5ca0f 100644 --- a/docs/libcurl/libcurl-tutorial.3 +++ b/docs/libcurl/libcurl-tutorial.3 @@ -523,7 +523,8 @@ multiple files posting is deprecated by RFC 7578, chapter 4.3. To set the data source from an already opened FILE pointer, use: .nf - curl_mime_data_cb(part, filesize, fread, fseek, NULL, filepointer); + curl_mime_data_cb(part, filesize, (curl_read_callback) fread, + (curl_seek_callback) fseek, NULL, filepointer); .fi A deprecated \fIcurl_formadd(3)\fP function is still supported in libcurl.