summaryrefslogtreecommitdiff
path: root/nuttx/libc/math/lib_atan2l.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/libc/math/lib_atan2l.c')
-rw-r--r--nuttx/libc/math/lib_atan2l.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/libc/math/lib_atan2l.c b/nuttx/libc/math/lib_atan2l.c
index 1946a3f04..5ea4616be 100644
--- a/nuttx/libc/math/lib_atan2l.c
+++ b/nuttx/libc/math/lib_atan2l.c
@@ -64,7 +64,7 @@ long double atan2l(long double y, long double x)
{
return M_PI_2;
}
- else if (y == 0 && x == 0) /* Undefined but returns normally 0 */
+ else /* if (y == 0 && x == 0) Undefined but returns normally 0 */
{
return 0;
}