mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
mpegplayer fix warnings
this should fix 'warning: cast between incompatible function types' Change-Id: I7d192b8953fd14511431cb50254900f566eb0574
This commit is contained in:
parent
9ed486bdc7
commit
3d72119dd4
4 changed files with 13 additions and 11 deletions
|
|
@ -222,11 +222,11 @@ void list_add_item(void **list, void *item);
|
|||
void list_clear_all(void **list);
|
||||
|
||||
/* Enumerate all items in the array. */
|
||||
typedef bool (*list_enum_callback_t)(void *item, intptr_t data);
|
||||
typedef bool (*list_enum_callback_t)(void *item, void* data);
|
||||
|
||||
void list_enum_items(void **list,
|
||||
list_enum_callback_t callback,
|
||||
intptr_t data);
|
||||
void *data);
|
||||
|
||||
|
||||
/** System events **/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue