gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 162/208: splay: fix signed/unsigned mismatch warnin


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 162/208: splay: fix signed/unsigned mismatch warning
Date: Wed, 09 Aug 2017 17:35:59 +0200

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

ng0 pushed a commit to annotated tag gnurl-7.55.0
in repository gnurl.

commit f8614af527f19058a137f1e711629bfc48f50415
Author: Jay Satiro <address@hidden>
AuthorDate: Sat Jul 29 01:13:42 2017 -0400

    splay: fix signed/unsigned mismatch warning
    
    Follow-up to 4dee50b.
    
    Ref: https://github.com/curl/curl/pull/1693
---
 lib/splay.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/splay.c b/lib/splay.c
index 24c6491c5..68ff9c5db 100644
--- a/lib/splay.c
+++ b/lib/splay.c
@@ -102,7 +102,7 @@ struct Curl_tree *Curl_splayinsert(struct curltime i,
                                    struct Curl_tree *node)
 {
   static const struct curltime KEY_NOTUSED = {
-    -1, -1
+    (time_t)-1, (unsigned int)-1
   }; /* will *NEVER* appear */
 
   if(node == NULL)
@@ -212,7 +212,7 @@ int Curl_splayremovebyaddr(struct Curl_tree *t,
                            struct Curl_tree **newroot)
 {
   static const struct curltime KEY_NOTUSED = {
-    -1, -1
+    (time_t)-1, (unsigned int)-1
   }; /* will *NEVER* appear */
   struct Curl_tree *x;
 

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



reply via email to

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