diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-12-02 23:01:01 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-12-02 23:01:01 +0000 |
commit | 98782a067a55226f0b02e345c811b5b82369bdeb (patch) | |
tree | 96687d18d9b6b0a1ac1c9528b23cec47b6049a13 /gui/mplayer | |
parent | f87c9296a7fe449156a9b807fb61522053e7de5a (diff) |
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
Diffstat (limited to 'gui/mplayer')
-rw-r--r-- | gui/mplayer/gtk/fs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gui/mplayer/gtk/fs.c b/gui/mplayer/gtk/fs.c index 78678d9faa..5a45a13b29 100644 --- a/gui/mplayer/gtk/fs.c +++ b/gui/mplayer/gtk/fs.c @@ -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 ); |