examples: fix some compiler warnings

This commit is contained in:
Daniel Stenberg
2016-02-11 10:21:09 +01:00
parent 888e4b6821
commit d202fbcc00
3 changed files with 3 additions and 3 deletions

View File

@@ -100,7 +100,7 @@ static curlioerr my_ioctl(CURL *handle, curliocmd cmd, void *userp)
/* read callback function, fread() look alike */
static size_t read_callback(void *ptr, size_t size, size_t nmemb, void *stream)
{
size_t retcode;
ssize_t retcode;
curl_off_t nread;
intptr_t fd = (intptr_t)stream;