From c382a5acb17e30262f1b355e3adc6a15cca67e76 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Mon, 4 Nov 2019 21:08:29 +1100 Subject: [PATCH] [common] objectlists store void* not char* --- VERSION | 2 +- common/src/objectlist.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 2ad7fc21..e0111596 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -B1-23-g6ed4e23b80+1 \ No newline at end of file +B1-24-g5e3a46beb9+1 \ No newline at end of file diff --git a/common/src/objectlist.c b/common/src/objectlist.c index 5fe47e25..be28fbfa 100644 --- a/common/src/objectlist.c +++ b/common/src/objectlist.c @@ -26,7 +26,7 @@ struct ObjectList ObjectFreeFn free_fn; unsigned int size; unsigned int count; - char ** list; + void ** list; }; ObjectList objectlist_new(ObjectFreeFn free_fn)