diff options
author | Guilherme Janczak | 2021-07-25 01:55:25 +0000 |
---|---|---|
committer | Hiltjo Posthuma | 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[]) 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); } |