mirror of https://github.com/mpv-player/mpv
Remove unused variables, fixes the warnings:
mplayer/gtk/fs.c:428: warning: unused variable 'j' mplayer/gtk/fs.c:428: warning: unused variable 'size' mplayer/gtk/fs.c:426: warning: unused variable 'str' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25276 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
f87c9296a7
commit
98782a067a
|
@ -423,9 +423,8 @@ int fsFileExist( unsigned char * fname )
|
|||
|
||||
void fs_Ok_released( GtkButton * button,gpointer user_data )
|
||||
{
|
||||
unsigned char * str;
|
||||
GList * item;
|
||||
int size,j,i = 1;
|
||||
int i = 1;
|
||||
struct stat fs;
|
||||
|
||||
stat( fsSelectedFile,&fs );
|
||||
|
|
Loading…
Reference in New Issue