mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 14:49:36 -04:00
/strtopx/ s/result/&result/
This is the version I *meant* to commit last week.
This commit is contained in:
parent
ebf5d9bc2c
commit
fad677445e
2 changed files with 2 additions and 2 deletions
|
|
@ -40,6 +40,6 @@ strtold(const char * __restrict s, char ** __restrict sp)
|
|||
{
|
||||
long double result;
|
||||
|
||||
strtopQ(s, sp, result);
|
||||
strtopQ(s, sp, &result);
|
||||
return result;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -40,6 +40,6 @@ strtold(const char * __restrict s, char ** __restrict sp)
|
|||
{
|
||||
long double result;
|
||||
|
||||
strtopx(s, sp, result);
|
||||
strtopx(s, sp, &result);
|
||||
return result;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue