mirror of
https://github.com/mpv-player/mpv
synced 2025-01-29 11:12:56 +00:00
Fix the menu uninit function name.
NOTE: Nobody call this function by now, should be fixed. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25448 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
fea0ba733f
commit
cccac8fa2a
@ -254,7 +254,7 @@ int menu_init(struct MPContext *mpctx, char* cfg_file) {
|
||||
}
|
||||
|
||||
// Destroy all this stuff
|
||||
void menu_unint(void) {
|
||||
void menu_uninit(void) {
|
||||
int i;
|
||||
for(i = 0 ; menu_list && menu_list[i].name ; i++) {
|
||||
free(menu_list[i].name);
|
||||
|
@ -47,7 +47,7 @@ typedef struct menu_info_s {
|
||||
|
||||
/// Global init/uninit
|
||||
int menu_init(struct MPContext *mpctx, char* cfg_file);
|
||||
void menu_unint(void);
|
||||
void menu_uninit(void);
|
||||
|
||||
/// Open a menu defined in the config file
|
||||
menu_t* menu_open(char *name);
|
||||
|
Loading…
Reference in New Issue
Block a user