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:
diego 2007-12-02 23:01:01 +00:00
parent f87c9296a7
commit 98782a067a
1 changed files with 1 additions and 2 deletions

View File

@ -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 );