about summary refs log tree commit diff
path: root/src/math/asinf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/asinf.c')
-rw-r--r--src/math/asinf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/asinf.c b/src/math/asinf.c
index 462bf043..51fe6c61 100644
--- a/src/math/asinf.c
+++ b/src/math/asinf.c
@@ -26,7 +26,7 @@ qS1 = -7.0662963390e-01;
 
 static float R(float z)
 {
-	float p, q;
+	float_t p, q;
 	p = z*(pS0+z*(pS1+z*pS2));
 	q = 1.0f+z*qS1;
 	return p/q;