Make watcher not vomit into the terminal

This commit is contained in:
kamkow1
2025-06-15 11:18:33 +02:00
parent f4a908541a
commit bacc733fc3

View File

@ -100,7 +100,6 @@ void watcher_add_all(Watcher *w, char *root)
char path[PATH_MAX];
snprintf(path, sizeof(path), "%s/%s", root, entry->d_name);
LOGI("%s\n", path);
for (size_t i = 0; i < w->ignored.count; i++) {
if (strcmp(w->ignored.items[i], path) == 0) {