mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
Fixed compiler warning
This commit is contained in:
parent
7fe60ada00
commit
d101e113cf
@ -2568,7 +2568,7 @@ ZEND_API double zend_hex_strtod(const char *str, char **endptr)
|
||||
s += 2;
|
||||
}
|
||||
|
||||
while (c = *s++) {
|
||||
while ((c = *s++)) {
|
||||
if (c >= '0' && c <= '9') {
|
||||
c -= '0';
|
||||
} else if (c >= 'A' && c <= 'F') {
|
||||
|
Loading…
Reference in New Issue
Block a user