gnunet-svn
[Top][All Lists]
Advanced

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

[gnurl] 124/222: lib: silence conversion warnings


From: gnunet
Subject: [gnurl] 124/222: lib: silence conversion warnings
Date: Thu, 07 Nov 2019 00:10:20 +0100

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

ng0 pushed a commit to branch master
in repository gnurl.

commit 69d95b6d4c3dce64e58bd36d998ee10ae4da0f34
Author: Marcel Raad <address@hidden>
AuthorDate: Tue Oct 1 00:24:50 2019 +0200

    lib: silence conversion warnings
    
    Closes https://github.com/curl/curl/pull/4444
---
 lib/hostip.c       | 2 +-
 lib/vssh/libssh2.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/hostip.c b/lib/hostip.c
index bd532a891..d4e8f9366 100644
--- a/lib/hostip.c
+++ b/lib/hostip.c
@@ -749,7 +749,7 @@ clean_up:
                                             conn->created) / 1000;
 
     /* the alarm period is counted in even number of seconds */
-    unsigned long alarm_set = prev_alarm - elapsed_secs;
+    unsigned long alarm_set = (unsigned long)(prev_alarm - elapsed_secs);
 
     if(!alarm_set ||
        ((alarm_set >= 0x80000000) && (prev_alarm < 0x80000000)) ) {
diff --git a/lib/vssh/libssh2.c b/lib/vssh/libssh2.c
index 6a6793aa3..c71cfbc9f 100644
--- a/lib/vssh/libssh2.c
+++ b/lib/vssh/libssh2.c
@@ -2822,7 +2822,7 @@ static CURLcode ssh_block_statemach(struct connectdata 
*conn,
         fd_write = sock;
       /* wait for the socket to become ready */
       (void)Curl_socket_check(fd_read, CURL_SOCKET_BAD, fd_write,
-                              left>1000?1000:left); /* ignore result */
+                              left>1000?1000:(time_t)left);
     }
 #endif
 

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



reply via email to

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