summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuilherme Janczak <guilherme.janczak@yandex.com>2021-07-25 01:55:25 +0000
committerrafa_99 <raroma09@gmail.com>2021-07-26 12:26:22 +0100
commite565651366ee8891a02a534ae64286ec9b268ce9 (patch)
tree714cd6575fcea862d6990ded0875a012d9dc6254
parentb862f607a5683501e86cbef719583327fe2055a6 (diff)
remove always true condition in if statement
-rw-r--r--stest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stest.c b/stest.c
index 7a7b0bc..e27d3a5 100644
--- a/stest.c
+++ b/stest.c
@@ -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);
}