mirror of
https://github.com/curl/curl.git
synced 2025-03-25 15:50:32 +08:00
lib: silence conversion warnings
Closes https://github.com/curl/curl/pull/4444
This commit is contained in:
parent
68b0aac2f8
commit
69d95b6d4c
@ -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)) ) {
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user