wok-next diff fltk/stuff/filename_list-dirent.patch @ rev 7998
Add: tazwok-experimental 0.0.2 - libtaz 0.0.1 - tazchroot 0.0.1
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Tue Jan 18 15:50:33 2011 +0100 (2011-01-18) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/fltk/stuff/filename_list-dirent.patch Tue Jan 18 15:50:33 2011 +0100 1.3 @@ -0,0 +1,11 @@ 1.4 +--- src/filename_list.cxx Thu Sep 24 21:32:52 2009 1.5 ++++ src/filename_list.cxx Thu Sep 24 21:35:20 2009 1.6 +@@ -67,7 +67,7 @@ 1.7 + // The vast majority of UNIX systems want the sort function to have this 1.8 + // prototype, most likely so that it can be passed to qsort without any 1.9 + // changes: 1.10 +- int n = scandir(d, list, 0, (int(*)(const void*,const void*))sort); 1.11 ++ int n = scandir(d, list, 0, (int(*)(const dirent **,const dirent **))sort); 1.12 + #else 1.13 + // This version is when we define our own scandir (WIN32 and perhaps 1.14 + // some Unix systems) and apparently on IRIX: