]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
splay: avoid using -1 in unsigned variable
authorDaniel Stenberg <daniel@haxx.se>
Wed, 20 Jul 2022 11:44:37 +0000 (13:44 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 23 Jul 2022 11:38:54 +0000 (13:38 +0200)
To fix icc compiler warning integer conversion resulted in a change of sign

Closes #9179

lib/splay.c

index e7d86f1aac08eb19fee1a42bf78a54a00b363687..33b44aa1c6f5d3ed621465cb967577dac532d6e5 100644 (file)
@@ -103,7 +103,7 @@ struct Curl_tree *Curl_splayinsert(struct curltime i,
                                    struct Curl_tree *node)
 {
   static const struct curltime KEY_NOTUSED = {
-    (time_t)-1, (unsigned int)-1
+    ~0, -1
   }; /* will *NEVER* appear */
 
   if(!node)
@@ -213,7 +213,7 @@ int Curl_splayremove(struct Curl_tree *t,
                      struct Curl_tree **newroot)
 {
   static const struct curltime KEY_NOTUSED = {
-    (time_t)-1, (unsigned int)-1
+    ~0, -1
   }; /* will *NEVER* appear */
   struct Curl_tree *x;