mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 10:37:38 -04:00
Oops, fix yellow
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19944 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
5a55772201
commit
040bb7a8f5
1 changed files with 4 additions and 1 deletions
|
@ -224,7 +224,10 @@ static long fp_atof(const char* s, int precision)
|
||||||
long sign = 1;
|
long sign = 1;
|
||||||
bool point = false;
|
bool point = false;
|
||||||
|
|
||||||
s = skip_whitespace(s);
|
while ((*s != '\0') && isspace(*s))
|
||||||
|
{
|
||||||
|
s++;
|
||||||
|
}
|
||||||
|
|
||||||
if (*s == '-')
|
if (*s == '-')
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue