mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
scanblnl: drop extra braces.
Pointed out by: bde
This commit is contained in:
parent
d050b80397
commit
5b3ddf0928
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=278160
@ -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 New Issue
Block a user