de = readdir(d);
if (de && de->d_name[0] != '.') {
if ((!mct)
- || (llfind(mct, de->d_name, strcmp) !=
+ || (llfind(mct, de->d_name,
+ (int (*)(const void *, const void *))
+ strcmp) !=
NULL)) {
logthing(LOGTHING_CRITICAL,
"Found %s // %s", word,
end++;
}
- if (llfind(wordlist, start, strcmp) == NULL) {
+ if (llfind(wordlist, start,
+ (int (*)(const void *, const void *)) strcmp
+ ) == NULL) {
wordlist = lladd(wordlist, start);
}
}
for (i = 0; uids[i] != NULL; ++i) {
words = makewordlist(NULL, uids[i]);
for (wl = words; wl != NULL; wl = wl->next) {
- if (llfind(wordlist, wl->object, strcmp) == NULL) {
+ if (llfind(wordlist, wl->object,
+ (int (*)(const void *, const void *)) strcmp
+ ) == NULL) {
wordlist = lladd(wordlist, strdup(wl->object));
}
}