mirror of
https://github.com/mpv-player/mpv
synced 2025-02-20 06:46:55 +00:00
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
This commit is contained in:
parent
358717114f
commit
486e5b2c2b
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user