From 9edf8edc5511f6e6e4945dd8557989f7969e44c1 Mon Sep 17 00:00:00 2001 From: Nikolaj Date: Thu, 28 Oct 2021 15:42:07 +0200 Subject: [PATCH] :bug: --- A2/fauxgrep-mt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/A2/fauxgrep-mt.c b/A2/fauxgrep-mt.c index 02a80d7..af8270a 100644 --- a/A2/fauxgrep-mt.c +++ b/A2/fauxgrep-mt.c @@ -35,7 +35,7 @@ int fauxgrep_file(char const *needle, char const *path) { while (getline(&line, &linelen, f) != -1) { if (strstr(line, needle) != NULL) { - //printf("%s:%d: %s", path, lineno, line); + printf("%s:%d: %s", path, lineno, line); } lineno++;