mirror of
https://github.com/curl/curl.git
synced 2026-08-25 04:23:36 +03:00
lib: silence conversion warnings
Closes https://github.com/curl/curl/pull/4444
This commit is contained in:
parent
68b0aac2f8
commit
69d95b6d4c
2 changed files with 2 additions and 2 deletions
|
|
@ -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)) ) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue