aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/template.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/template.c b/src/template.c
index a33ff02..6d2ffe9 100644
--- a/src/template.c
+++ b/src/template.c
@@ -21,6 +21,7 @@ unsigned tpl_pool_func_used = 0;
struct tplfunc_frame *tpl_pool_func[1024] = {0};
void tpl_register_func(char *key, struct tplfunc_frame *frame) {
+ (void) key; // TODO: placeholder
tpl_pool_func[tpl_pool_func_used] = calloc(1, sizeof(tpl_pool_func[tpl_pool_func_used]));
memcpy(tpl_pool_func[tpl_pool_func_used], frame, sizeof(*frame));
tpl_pool_func_used++;