aboutsummaryrefslogtreecommitdiff
path: root/grep.c
diff options
context:
space:
mode:
Diffstat (limited to 'grep.c')
-rw-r--r--grep.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/grep.c b/grep.c
index 320655bf4..fec8d0913 100644
--- a/grep.c
+++ b/grep.c
@@ -69,8 +69,7 @@ static void grep_file(FILE *file)
69 int nmatches = 0; 69 int nmatches = 0;
70 70
71 while ((line = get_line_from_file(file)) != NULL) { 71 while ((line = get_line_from_file(file)) != NULL) {
72 if (line[strlen(line)-1] == '\n') 72 chomp(line);
73 line[strlen(line)-1] = '\0';
74 linenum++; 73 linenum++;
75 ret = regexec(&regex, line, 0, NULL, 0); 74 ret = regexec(&regex, line, 0, NULL, 0);
76 if (ret == 0 && !invert_search) { /* match */ 75 if (ret == 0 && !invert_search) { /* match */