mirror of
https://github.com/curl/curl.git
synced 2026-08-24 18:33:34 +03:00
strtoofft: rename CURL_LLONG_MIN -> CURL_OFF_T_MIN
... and CURL_LLONG_MAX -> CURL_OFF_T_MAX
This commit is contained in:
parent
35955179c6
commit
20ae9d4f71
4 changed files with 10 additions and 10 deletions
|
|
@ -131,9 +131,9 @@ curlx_strtoll(const char *nptr, char **endptr, int base)
|
|||
}
|
||||
else {
|
||||
if(is_negative)
|
||||
value = CURL_LLONG_MIN;
|
||||
value = CURL_OFF_T_MIN;
|
||||
else
|
||||
value = CURL_LLONG_MAX;
|
||||
value = CURL_OFF_T_MAX;
|
||||
|
||||
SET_ERRNO(ERANGE);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue