aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2026-05-12 12:34:30 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2026-05-12 12:36:50 -0400
commit9b7a784099f11fa20312a118c74d08a2c25572fc (patch)
tree18dfb8d7e14a5cf52f57e0242e0cbaa9a9b754a2 /tests
parentd89f776c1d55fa6ad41b5dcf870d03256a4f54a7 (diff)
downloadstasis-9b7a784099f11fa20312a118c74d08a2c25572fc.tar.gz
Replace void pointer with pointer to tplfunc_frame structure
Diffstat (limited to 'tests')
-rw-r--r--tests/test_template.c2
1 files changed, 1 insertions, 1 deletions
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},