fix iconv conversion to legacy 8bit codepages
[musl] / src / math / __log1pf.h
index 99492c5..f2fbef2 100644 (file)
@@ -22,7 +22,7 @@ Lg4 = 0xf89e26.0p-26; /* 0.24279078841 */
 
 static inline float __log1pf(float f)
 {
-       float hfsq,s,z,R,w,t1,t2;
+       float_t hfsq,s,z,R,w,t1,t2;
 
        s = f/(2.0f + f);
        z = s*s;