[common] objectlists store void* not char*

This commit is contained in:
Geoffrey McRae 2019-11-04 21:08:29 +11:00
parent 5e3a46beb9
commit c382a5acb1
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
B1-23-g6ed4e23b80+1
B1-24-g5e3a46beb9+1

View File

@ -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)