mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
* strtoul.c (strtoul): Add parentheses around && within ||.
From-SVN: r28819
This commit is contained in:
parent
d60eaeffd5
commit
55247fce70
@ -1,3 +1,7 @@
|
||||
Tue Aug 24 02:50:45 1999 Philippe De Muyter <phdm@macqel.be>
|
||||
|
||||
* strtoul.c (strtoul): Add parentheses around && within ||.
|
||||
|
||||
Fri Aug 6 23:32:29 1999 Daniel Jacobowitz <drow@drow.them.org>
|
||||
|
||||
* Makefile.in (FLAGS_TO_PASS): Include prefix, exec_prefix,
|
||||
|
@ -91,7 +91,7 @@ strtoul(nptr, endptr, base)
|
||||
break;
|
||||
if (c >= base)
|
||||
break;
|
||||
if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim)
|
||||
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
|
||||
any = -1;
|
||||
else {
|
||||
any = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user