From 486e5b2c2be6ec9e56072284176a86d09f46fdef Mon Sep 17 00:00:00 2001 From: ben Date: Sat, 8 Dec 2007 23:21:08 +0000 Subject: identifiers starting with an underscore are reserved by the C standard git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25325 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmenu/menu_filesel.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libmenu/menu_filesel.c b/libmenu/menu_filesel.c index 6ecd4c5e14..3f91080f46 100644 --- a/libmenu/menu_filesel.c +++ b/libmenu/menu_filesel.c @@ -180,7 +180,7 @@ static void free_extensions(char **extensions){ } } -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 @@ bailout: 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; } -- cgit v1.2.3