math cleanup: use 1.0f instead of 1.0F
[musl] / src / math / powf.c
index c78eb12..01aced0 100644 (file)
@@ -70,7 +70,7 @@ float powf(float x, float y)
 
        /* y != zero: result is NaN if either arg is NaN */
        if (ix > 0x7f800000 || iy > 0x7f800000)
-               return (x+0.0F) + (y+0.0F);
+               return (x+0.0f) + (y+0.0f);
 
        /* determine if y is an odd int when x < 0
         * yisint = 0       ... y is not an integer