gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 226/256: tests: fix a compiler warning in test 643


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 226/256: tests: fix a compiler warning in test 643
Date: Fri, 06 Oct 2017 19:45:17 +0200

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

ng0 pushed a commit to branch master
in repository gnurl.

commit b6a90bca335b08971371fbceeae694d970aebcb6
Author: Michael Kaufmann <address@hidden>
AuthorDate: Sat Sep 23 14:43:55 2017 +0200

    tests: fix a compiler warning in test 643
---
 tests/libtest/lib643.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/libtest/lib643.c b/tests/libtest/lib643.c
index c9d525bc2..e26a2515f 100644
--- a/tests/libtest/lib643.c
+++ b/tests/libtest/lib643.c
@@ -35,7 +35,7 @@ static char data[]=
 
 struct WriteThis {
   char *readptr;
-  size_t sizeleft;
+  curl_off_t sizeleft;
 };
 
 static size_t read_callback(char *ptr, size_t size, size_t nmemb, void *userp)
@@ -55,7 +55,7 @@ static size_t read_callback(char *ptr, size_t size, size_t 
nmemb, void *userp)
     return 0;
 
 #ifndef LIB645
-  eof = !pooh->sizeleft;
+  eof = pooh->sizeleft <= 0;
   if(!eof)
     pooh->sizeleft--;
 #endif
@@ -83,7 +83,7 @@ static int once(char *URL, bool oldstyle)
 
   pooh.readptr = data;
 #ifndef LIB645
-  datasize = strlen(data);
+  datasize = (curl_off_t)strlen(data);
 #endif
   pooh.sizeleft = datasize;
 
@@ -138,7 +138,7 @@ static int once(char *URL, bool oldstyle)
 
   pooh2.readptr = data;
 #ifndef LIB645
-  datasize = strlen(data);
+  datasize = (curl_off_t)strlen(data);
 #endif
   pooh2.sizeleft = datasize;
 

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



reply via email to

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