fail posix_spawn file_actions operations with negative fds
[musl] / src / math / __invtrigl.c
index ef7f4e1..48f83aa 100644 (file)
@@ -57,7 +57,7 @@ long double __invtrigl_R(long double z)
 {
        long double p, q;
        p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*(pS5+z*(pS6+z*(pS7+z*(pS8+z*pS9)))))))));
-       q = 1.0+z*(qS1+z*(qS2+z*(qS3+z*(qS4+z*(qS5+z*(pS6+z*(pS7+z*(pS8+z*pS9))))))));
+       q = 1.0+z*(qS1+z*(qS2+z*(qS3+z*(qS4+z*(qS5+z*(qS6+z*(qS7+z*(qS8+z*qS9))))))));
        return p/q;
 }
 #endif