From: Yang Tse Date: Thu, 14 Aug 2008 10:30:45 +0000 (+0000) Subject: CURL_LLONG_MIN should now be signed X-Git-Tag: cares-1_5_3~129 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0105ad5e39ef147f0f2b4fa0c66a7e8b6bffe405;p=curl CURL_LLONG_MIN should now be signed --- diff --git a/lib/strtoofft.h b/lib/strtoofft.h index c556404d5..3bea048e6 100644 --- a/lib/strtoofft.h +++ b/lib/strtoofft.h @@ -58,7 +58,7 @@ #endif #define CURL_LLONG_MAX CURL_OFF_T_C(0x7FFFFFFFFFFFFFFF) -#define CURL_LLONG_MIN CURL_OFF_T_C(0x8000000000000000) +#define CURL_LLONG_MIN (-CURL_LLONG_MAX - CURL_OFF_T_C(1)) #endif