K 10 svn:author V 7 delphij K 8 svn:date V 27 2012-05-16T20:00:33.611627Z K 7 svn:log V 394 MFC r234244: The scandir(3) function expects fourth parameter, compar, be in type of: int (*compar)(const struct dirent **, const struct dirent **) The current code defines sortq() to accept two void *, then cast them to const struct dirent **. Because the code does not really need this cast, we can eliminate the casts by changing the function prototype to match scandir(3) expectation. END