Commit 7aeae9ec authored by Emmanuel Bertin's avatar Emmanuel Bertin
Browse files

Had forgotten the final F in HAVE_SINCOSF in add_prof().

parent 532d120d
...@@ -4511,7 +4511,7 @@ void make_kernel(float pos, float *kernel, interpenum interptype) ...@@ -4511,7 +4511,7 @@ void make_kernel(float pos, float *kernel, interpenum interptype)
else else
{ {
x = -PI/3.0*(pos+2.0); x = -PI/3.0*(pos+2.0);
#ifdef HAVE_SINCOS #ifdef HAVE_SINCOSF
sincosf(x, &sinx1, &cosx1); sincosf(x, &sinx1, &cosx1);
#else #else
sinx1 = sinf(x); sinx1 = sinf(x);
......
Supports Markdown
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