diff options
author | Guilherme Janczak <guilherme.janczak@yandex.com> | 2021-07-25 01:55:25 +0000 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2021-07-25 10:55:45 +0200 |
commit | 523aa08f51a88c59ad4b1f600f8ce3d122e9e289 (patch) | |
tree | 8980c7a389d77c7ec4f5601da47635d60731d7d0 | |
parent | 1a13d0465d1a6f4f74bc5b07b04c9bd542f20ba6 (diff) |
remove always true condition in if statement
-rw-r--r-- | stest.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,7 +84,7 @@ main(int argc, char *argv[]) | |||
84 | if (!argc) { | 84 | if (!argc) { |
85 | /* read list from stdin */ | 85 | /* read list from stdin */ |
86 | while ((n = getline(&line, &linesiz, stdin)) > 0) { | 86 | while ((n = getline(&line, &linesiz, stdin)) > 0) { |
87 | if (n && line[n - 1] == '\n') | 87 | if (line[n - 1] == '\n') |
88 | line[n - 1] = '\0'; | 88 | line[n - 1] = '\0'; |
89 | test(line, line); | 89 | test(line, line); |
90 | } | 90 | } |