Ticket #16280: patch-src_files.cc.diff
File patch-src_files.cc.diff, 497 bytes (added by blb@…, 16 years ago) |
---|
-
src/files.cc
old new 2 2 #include <stdlib.h> 3 3 #include <string.h> 4 4 #include <dirent.h> 5 #include <sys/stat.h> 5 6 6 7 #include "player.h" 7 8 #include "files.h" … … 698 699 /* 699 700 Filter out files that do not have .sav in the name. 700 701 */ 701 int Filter_File( conststruct dirent *my_file )702 int Filter_File( struct dirent *my_file ) 702 703 { 703 704 if ( strstr(my_file->d_name, ".sav") ) 704 705 return TRUE;