Split comparison among several lines for debugging

This commit is contained in:
Yang Tse 2008-08-13 13:07:50 +00:00
parent a2c50a980c
commit 64e3a091c3
1 changed files with 3 additions and 1 deletions

View File

@ -1399,7 +1399,9 @@ static int str2offset(curl_off_t *val, const char *str)
/* this is a duplicate of the function that is also used in libcurl */
*val = curlx_strtoofft(str, NULL, 0);
if ((*val == LLONG_MAX || *val == LLONG_MIN) && ERRNO == ERANGE)
if( ( (*val == LLONG_MAX) ||
(*val == LLONG_MIN) ) &&
(ERRNO == ERANGE) )
return 1;
#else
*val = strtol(str, NULL, 0);