summaryrefslogtreecommitdiffstats
path: root/libmenu
diff options
context:
space:
mode:
authorben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-08 23:21:08 +0000
committerben <ben@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-08 23:21:08 +0000
commit486e5b2c2be6ec9e56072284176a86d09f46fdef (patch)
treecc92d3e7201e380adb847b4a359c94fd9c6996d3 /libmenu
parent358717114f8a1bb726f64a32258d23fce52274b7 (diff)
downloadmpv-486e5b2c2be6ec9e56072284176a86d09f46fdef.tar.bz2
mpv-486e5b2c2be6ec9e56072284176a86d09f46fdef.tar.xz
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
Diffstat (limited to 'libmenu')
-rw-r--r--libmenu/menu_filesel.c6
1 files 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;
}