mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
libcurl-tutorial: add casts in example to avoid compilation warnings.
This commit is contained in:
parent
c3e58d93de
commit
ff6774ea6a
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user