aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/anyauthput.c
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/anyauthput.c')
-rw-r--r--docs/examples/anyauthput.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/docs/examples/anyauthput.c b/docs/examples/anyauthput.c
index 8b979515a..156e8d152 100644
--- a/docs/examples/anyauthput.c
+++ b/docs/examples/anyauthput.c
@@ -33,7 +33,7 @@
#include <curl/curl.h>
-#ifdef WIN32
+#ifdef _WIN32
# define FILENO(fp) _fileno(fp)
#else
# define FILENO(fp) fileno(fp)
@@ -69,17 +69,15 @@ static int my_seek(void *userp, curl_off_t offset, int origin)
/* read callback function, fread() look alike */
static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *stream)
{
- ssize_t retcode;
- unsigned long nread;
+ size_t nread;
- retcode = fread(ptr, size, nmemb, stream);
+ nread = fread(ptr, size, nmemb, stream);
- if(retcode > 0) {
- nread = (unsigned long)retcode;
- fprintf(stderr, "*** We read %lu bytes from file\n", nread);
+ if(nread > 0) {
+ fprintf(stderr, "*** We read %lu bytes from file\n", (unsigned long)nread);
}
- return retcode;
+ return nread;
}
int main(int argc, char **argv)