summaryrefslogtreecommitdiff
path: root/lib/libm/csinl.c
diff options
context:
space:
mode:
authorKacper <kacper@mail.openlinux.dev>2025-12-25 19:24:38 +0100
committerKacper <kacper@mail.openlinux.dev>2025-12-25 20:35:03 +0100
commita984eb367c032dbe2577f01238c3d1268526be70 (patch)
tree437fef40379b2758b129ccea39df3570fa2d145e /lib/libm/csinl.c
parent8834571b202cf4dc9c649cfb096c213b6ecf1566 (diff)
Clang-tidy fixes
Diffstat (limited to 'lib/libm/csinl.c')
-rw-r--r--lib/libm/csinl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libm/csinl.c b/lib/libm/csinl.c
index 9793d4ad..245d609f 100644
--- a/lib/libm/csinl.c
+++ b/lib/libm/csinl.c
@@ -7,6 +7,5 @@ long double complex csinl(long double complex z)
{
long double ch, sh;
cchshl(cimagl(z), &ch, &sh);
- return sinl(creall(z)) * ch +
- (cosl(creall(z)) * sh) * (long double complex)I;
+ return sinl(creall(z)) * ch + (cosl(creall(z)) * sh) * (long double complex)I;
}