Commit 2c1bf3fc authored by Michael Niedermayer's avatar Michael Niedermayer

avutil/libm: fix fminf typo

Found-by: ubitux
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 97508af2
......@@ -84,7 +84,7 @@ static av_always_inline float cbrtf(float x)
#if !HAVE_FMINF
#undef fminf
#define fminf(x, y) ((float)fminf(x,y))
#define fminf(x, y) ((float)fmin(x,y))
#endif
#if !HAVE_ISINF
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment