1
0
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:
ulion 2007-12-18 10:45:43 +00:00
parent fea0ba733f
commit cccac8fa2a
2 changed files with 2 additions and 2 deletions

View File

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

View File

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