Commit c6e900e9 authored by Clément Bœsch's avatar Clément Bœsch

lavfi/curves: fix meaningless const int returned value

Spotted-by: 's avatarJames Almer <jamrial@gmail.com>
parent e85d38c2
......@@ -334,8 +334,8 @@ end:
}
#define DECLARE_INTERPOLATE_FUNC(nbits) \
static const int interpolate##nbits(void *log_ctx, uint16_t *y, \
const struct keypoint *points) \
static int interpolate##nbits(void *log_ctx, uint16_t *y, \
const struct keypoint *points) \
{ \
return interpolate(log_ctx, y, points, nbits); \
}
......
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