mirror of
https://github.com/curl/curl.git
synced 2026-06-24 06:55:41 +03:00
easy.c: fix compiler warning
This commit is contained in:
parent
07cca0dc7c
commit
5f5e4c92c4
1 changed files with 2 additions and 1 deletions
|
|
@ -276,7 +276,8 @@ CURLcode curl_global_init(long flags)
|
|||
}
|
||||
#endif
|
||||
|
||||
Curl_ack_eintr = flags & CURL_GLOBAL_ACK_EINTR;
|
||||
if(flags & CURL_GLOBAL_ACK_EINTR)
|
||||
Curl_ack_eintr = 1;
|
||||
|
||||
init_flags = flags;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue