1
0
Fork 0

Fix FL_STAT macro

This commit is contained in:
Frederic Bouvier 2012-02-12 21:20:53 +01:00
parent a756c959d6
commit 338d5cc9b2

View file

@ -59,7 +59,7 @@ static const float max_progress = 5000.0;
// Fltk < 1.3, "fl_filename_free_list", "fl_stat" not available
#define FL_FREE_DIR_ENTRY(e) free(e)
#define FL_FREE_DIR_LIST(list,count) free(list)
#define FL_STAT() stat( file.str().c_str(), info );
#define FL_STAT(file,info) stat( file.str().c_str(), info );
#endif
/** Strip a single trailing '/' or '\\' */