mirror of
https://git.freebsd.org/ports.git
synced 2025-07-04 19:09:16 -04:00
11 lines
449 B
C++
11 lines
449 B
C++
--- src/libprojectM/FileScanner.cpp.orig 2020-09-15 05:56:43 UTC
|
|
+++ src/libprojectM/FileScanner.cpp
|
|
@@ -121,7 +121,7 @@ void FileScanner::scanGeneric(ScanCallback cb, const c
|
|
|
|
#ifdef HAVE_FTS_H
|
|
// more optimized posix "fts" directory traversal
|
|
-int fts_compare(const FTSENT** one, const FTSENT** two) {
|
|
+int fts_compare(const FTSENT* const * one, const FTSENT* const * two) {
|
|
return (strcmp((*one)->fts_name, (*two)->fts_name));
|
|
}
|
|
#endif
|