This commit is contained in:
Nikolaj
2021-10-28 15:42:07 +02:00
parent b178311924
commit 9edf8edc55

View File

@ -35,7 +35,7 @@ int fauxgrep_file(char const *needle, char const *path) {
while (getline(&line, &linelen, f) != -1) { while (getline(&line, &linelen, f) != -1) {
if (strstr(line, needle) != NULL) { if (strstr(line, needle) != NULL) {
//printf("%s:%d: %s", path, lineno, line); printf("%s:%d: %s", path, lineno, line);
} }
lineno++; lineno++;