diff options
Diffstat (limited to 'sort.c')
-rw-r--r-- | sort.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,7 +71,7 @@ int sort_main(int argc, char **argv) | |||
71 | 71 | ||
72 | while ((line = get_line_from_file(fp)) != NULL) { | 72 | while ((line = get_line_from_file(fp)) != NULL) { |
73 | lines = xrealloc(lines, sizeof(char *) * (nlines + 1)); | 73 | lines = xrealloc(lines, sizeof(char *) * (nlines + 1)); |
74 | line[strlen(line) - 1] = '\0'; | 74 | chomp(line); |
75 | lines[nlines++] = line; | 75 | lines[nlines++] = line; |
76 | } | 76 | } |
77 | } | 77 | } |