Change type to enum - should silence C89 build errors

This commit is contained in:
twinaphex 2019-12-02 01:21:42 +01:00
parent 901932a8e1
commit 2a41f1fb99

View File

@ -648,7 +648,7 @@ static int menu_cbs_init_bind_deferred_push_compare_label(
unsigned i;
typedef struct deferred_info_list
{
unsigned type;
enum msg_hash_enums type;
int (*cb)(menu_displaylist_info_t *info);
} deferred_info_list_t;
@ -1364,4 +1364,4 @@ int menu_cbs_init_bind_deferred_push(menu_file_list_cbs_t *cbs,
return 0;
return -1;
}
}