blob: 5f063b28b630e89bdd32266f1fca90ce4d740a58 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- 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
|