X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fpowf.c;fp=src%2Fmath%2Fpowf.c;h=01aced0eb679bf63771821ff24c218667015de6f;hb=32ca5ef3ff3069bdaae5f95be1900a3c3f831247;hp=c78eb12fa37a25e27f32355b2da646c704b4da7c;hpb=8d0a6f7a1c47b280647f292e6864b85b72c71f2e;p=musl diff --git a/src/math/powf.c b/src/math/powf.c index c78eb12f..01aced0e 100644 --- a/src/math/powf.c +++ b/src/math/powf.c @@ -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