aboutsummaryrefslogtreecommitdiff
path: root/lib/strtoofft.c
diff options
context:
space:
mode:
authorKamil Dudka <kdudka@redhat.com>2010-05-29 21:28:16 +0200
committerKamil Dudka <kdudka@redhat.com>2010-05-29 21:28:16 +0200
commit20ae9d4f716cd898ca1aa47b7ea0664ebc57b2ba (patch)
tree0d1a3cf745a9dfcd15317a8518e8d5c1e6b9d436 /lib/strtoofft.c
parent35955179c6c3935e9b876090e29bb90c5740838f (diff)
strtoofft: rename CURL_LLONG_MIN -> CURL_OFF_T_MIN
... and CURL_LLONG_MAX -> CURL_OFF_T_MAX
Diffstat (limited to 'lib/strtoofft.c')
-rw-r--r--lib/strtoofft.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/strtoofft.c b/lib/strtoofft.c
index f75eb8a44..61ff05bed 100644
--- a/lib/strtoofft.c
+++ b/lib/strtoofft.c
@@ -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);
}