Mercurial > mplayer.hg
changeset 25297:949e15337e50
identifiers starting with an underscore are reserved by the C standard
author | ben |
---|---|
date | Sat, 08 Dec 2007 23:21:08 +0000 |
parents | e91e3944c07d |
children | 23894348d1e5 |
files | libmenu/menu_filesel.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/libmenu/menu_filesel.c Sat Dec 08 18:16:02 2007 +0000 +++ b/libmenu/menu_filesel.c Sat Dec 08 23:21:08 2007 +0000 @@ -180,7 +180,7 @@ } } -static int _open_dir(menu_t* menu,char* args) { +static int menu_open_dir(menu_t* menu,char* args) { char **namelist, **tp; struct dirent *dp; struct stat st; @@ -292,9 +292,9 @@ return 1; } static int open_dir(menu_t* menu,char* args) { - if (_open_dir(menu, args)) + if (menu_open_dir(menu, args)) return 1; - if (menu_chroot && _open_dir(menu, menu_chroot)) + if (menu_chroot && menu_open_dir(menu, menu_chroot)) return 1; return 0; }