mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
scanblnl: drop extra braces.
Pointed out by: bde
This commit is contained in:
parent
d050b80397
commit
5b3ddf0928
1 changed files with 1 additions and 2 deletions
|
|
@ -58,8 +58,7 @@ scalblnl (long double x, long n)
|
|||
int in;
|
||||
|
||||
in = (int)n;
|
||||
if (in != n) {
|
||||
if (in != n)
|
||||
in = (n > 0) ? INT_MAX: INT_MIN;
|
||||
}
|
||||
return (scalbnl(x, in));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue