gnunet-svn
[Top][All Lists]
Advanced

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

[libmicrohttpd] 31/36: Avoided potential compiler warnings


From: gnunet
Subject: [libmicrohttpd] 31/36: Avoided potential compiler warnings
Date: Thu, 01 Jun 2023 12:30:36 +0200

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

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit 61b407a25a6f9c3d761685b6ebad4065c2b4775e
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Thu May 25 13:23:28 2023 +0300

    Avoided potential compiler warnings
---
 src/microhttpd/daemon.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 14ef7e2a..df4038fd 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -4269,7 +4269,7 @@ get_timeout_millisec_ (struct MHD_Daemon *daemon,
   if ((0 < max_timeout) && ((uint64_t) max_timeout < d_timeout))
     return max_timeout;
 
-  if (INT64_MAX < d_timeout)
+  if (INT64_MAX <= d_timeout)
     return INT64_MAX;
 
   return (int64_t) d_timeout;

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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