mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix typo
This commit is contained in:
parent
4b676ec151
commit
7bbd0c8b5b
1 changed files with 1 additions and 1 deletions
|
|
@ -1227,7 +1227,7 @@ strtod
|
|||
}
|
||||
s0 = s;
|
||||
y = z = 0;
|
||||
for (nd = nf = 0; isdigit(c = (unsigned char)*s) && (n = digitoint(c)) <= 9; nd++, s++)
|
||||
for (nd = nf = 0; isdigit(c = (unsigned char)*s) && (n = digittoint(c)) <= 9; nd++, s++)
|
||||
if (nd < 9)
|
||||
y = 10*y + n;
|
||||
else if (nd < 16)
|
||||
|
|
|
|||
Loading…
Reference in a new issue