diff options
Diffstat (limited to 'src/port/strtol.c')
-rw-r--r-- | src/port/strtol.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/port/strtol.c b/src/port/strtol.c index a948489390e..a103b446e62 100644 --- a/src/port/strtol.c +++ b/src/port/strtol.c @@ -103,7 +103,8 @@ int base; * digit is > 7 (or 8), the number is too big, and we will return a range * error. * - * Set any if any `digits' consumed; make it negative to indicate overflow. + * Set any if any `digits' consumed; make it negative to indicate + * overflow. */ cutoff = neg ? -(unsigned long) LONG_MIN : LONG_MAX; cutlim = cutoff % (unsigned long) base; |