mirror of
https://github.com/curl/curl.git
synced 2026-04-27 08:02:12 +03:00
libcurl-tutorial: add casts in example to avoid compilation warnings.
This commit is contained in:
parent
c3e58d93de
commit
ff6774ea6a
1 changed files with 2 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue