remove always true condition in if statement

This commit is contained in:
Guilherme Janczak 2021-07-25 01:55:25 +00:00 committed by Santiago Lo Coco
parent d58e23814e
commit 3ea1251dc6
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ main(int argc, char *argv[])
if (!argc) {
/* read list from stdin */
while ((n = getline(&line, &linesiz, stdin)) > 0) {
if (n && line[n - 1] == '\n')
if (line[n - 1] == '\n')
line[n - 1] = '\0';
test(line, line);
}