gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 216/256: examples/post-callback: use long for CURLO


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 216/256: examples/post-callback: use long for CURLOPT_POSTFIELDSIZE
Date: Fri, 06 Oct 2017 19:45:07 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 5d916944ae3043de7b8d644d9ca3420fb0b2417e
Author: Marcel Raad <address@hidden>
AuthorDate: Thu Sep 21 20:07:24 2017 +0200

    examples/post-callback: use long for CURLOPT_POSTFIELDSIZE
    
    Otherwise, typecheck-gcc.h warns on MinGW-w64.
---
 docs/examples/post-callback.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/examples/post-callback.c b/docs/examples/post-callback.c
index 4dbe18e24..ebb4e2a25 100644
--- a/docs/examples/post-callback.c
+++ b/docs/examples/post-callback.c
@@ -117,7 +117,7 @@ int main(void)
 #else
     /* Set the expected POST size. If you want to POST large amounts of data,
        consider CURLOPT_POSTFIELDSIZE_LARGE */
-    curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, wt.sizeleft);
+    curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, (long)wt.sizeleft);
 #endif
 
 #ifdef DISABLE_EXPECT

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]