From c8c4a162fc18c0fd99bada66d9ea3b48c64b2450 Mon Sep 17 00:00:00 2001 From: James Almer Date: Thu, 22 Sep 2022 13:41:29 -0300 Subject: avcodec/lpc: use ptrdiff_t for length parameters Signed-off-by: James Almer --- tests/checkasm/lpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/checkasm') diff --git a/tests/checkasm/lpc.c b/tests/checkasm/lpc.c index e072599908..da5364def0 100644 --- a/tests/checkasm/lpc.c +++ b/tests/checkasm/lpc.c @@ -38,7 +38,7 @@ static void test_window(int len) LOCAL_ALIGNED(16, double, dst0, [5000]); LOCAL_ALIGNED(16, double, dst1, [5000]); - declare_func(void, int32_t *in, int len, double *out); + declare_func(void, const int32_t *in, ptrdiff_t len, double *out); randomize_int32(src, len); -- cgit v1.2.3