mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-01-23 20:18:11 +00:00
[common] objectlists store void* not char*
This commit is contained in:
parent
5e3a46beb9
commit
c382a5acb1
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
B1-23-g6ed4e23b80+1
|
||||
B1-24-g5e3a46beb9+1
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue