Mercurial > mplayer.hg
changeset 25420:e5a7f0401180
Fix the menu uninit function name.
NOTE: Nobody call this function by now, should be fixed.
author | ulion |
---|---|
date | Tue, 18 Dec 2007 10:45:43 +0000 |
parents | 59aba7a96701 |
children | cc1b8a9d0ae2 |
files | libmenu/menu.c libmenu/menu.h |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/libmenu/menu.c Tue Dec 18 09:44:54 2007 +0000 +++ b/libmenu/menu.c Tue Dec 18 10:45:43 2007 +0000 @@ -254,7 +254,7 @@ } // 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);
--- a/libmenu/menu.h Tue Dec 18 09:44:54 2007 +0000 +++ b/libmenu/menu.h Tue Dec 18 10:45:43 2007 +0000 @@ -47,7 +47,7 @@ /// 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);