comparison gui/mplayer/gtk/fs.c @ 25248:a5c848b27cd8

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'
author diego
date Sun, 02 Dec 2007 23:01:01 +0000
parents d541a8203657
children 8a0adeba5910
comparison
equal deleted inserted replaced
25247:3605c9777989 25248:a5c848b27cd8
421 return 1; 421 return 1;
422 } 422 }
423 423
424 void fs_Ok_released( GtkButton * button,gpointer user_data ) 424 void fs_Ok_released( GtkButton * button,gpointer user_data )
425 { 425 {
426 unsigned char * str;
427 GList * item; 426 GList * item;
428 int size,j,i = 1; 427 int i = 1;
429 struct stat fs; 428 struct stat fs;
430 429
431 stat( fsSelectedFile,&fs ); 430 stat( fsSelectedFile,&fs );
432 if( S_ISDIR(fs.st_mode ) ) 431 if( S_ISDIR(fs.st_mode ) )
433 { 432 {