From 9b7a784099f11fa20312a118c74d08a2c25572fc Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 12 May 2026 12:34:30 -0400 Subject: Replace void pointer with pointer to tplfunc_frame structure --- tests/test_template.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_template.c') diff --git a/tests/test_template.c b/tests/test_template.c index e8f0c1d..3efb142 100644 --- a/tests/test_template.c +++ b/tests/test_template.c @@ -95,7 +95,7 @@ void test_tpl_register_func() { struct testcase { const char *key; int argc; - void *func; + tplfunc *func; }; struct testcase tc[] = { {.key = "add", .argc = 2, .func = &adder}, -- cgit