diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-05-12 12:34:30 -0400 |
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2026-05-12 12:36:50 -0400 |
| commit | 9b7a784099f11fa20312a118c74d08a2c25572fc (patch) | |
| tree | 18dfb8d7e14a5cf52f57e0242e0cbaa9a9b754a2 /tests/test_template.c | |
| parent | d89f776c1d55fa6ad41b5dcf870d03256a4f54a7 (diff) | |
| download | stasis-9b7a784099f11fa20312a118c74d08a2c25572fc.tar.gz | |
Replace void pointer with pointer to tplfunc_frame structure
Diffstat (limited to 'tests/test_template.c')
| -rw-r--r-- | tests/test_template.c | 2 |
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}, |
