]> granicus.if.org Git - curl/commitdiff
Split comparison among several lines for debugging
authorYang Tse <yangsita@gmail.com>
Wed, 13 Aug 2008 13:07:50 +0000 (13:07 +0000)
committerYang Tse <yangsita@gmail.com>
Wed, 13 Aug 2008 13:07:50 +0000 (13:07 +0000)
src/main.c

index 584f7dfb59aaa319d8b37b6493b6cafdbc6a02ba..0eaf8f7f5eb2a313a1b428b11a7060dcfd1a03ea 100644 (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);