From a63f65067ded311192358c4aa54f207e307a8e02 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Tue, 13 Aug 2024 13:46:29 +0200 Subject: [PATCH] remove semicolon from filled macro --- src/ptk_list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ptk_list.h b/src/ptk_list.h index 6d15e6c..f637337 100644 --- a/src/ptk_list.h +++ b/src/ptk_list.h @@ -47,7 +47,7 @@ bool _remove_at_PtkList(void *data, uint32_t *size, size_t index, size_t element free(list.data) #define PTK_LIST_FILLED(list) \ - list.size = list.allocated; + list.size = list.allocated PTK_LIST_DEFINE(char);