[hackers] [dmenu] remove always true condition in if statement || Guilherme Janczak
commit 523aa08f51a88c59ad4b1f600f8ce3d122e9e289
Author: Guilherme Janczak <guilherme.janczak_AT_yandex.com>
AuthorDate: Sun Jul 25 01:55:25 2021 +0000
Commit: Hiltjo Posthuma <hiltjo_AT_codemadness.org>
CommitDate: Sun Jul 25 10:55:45 2021 +0200
remove always true condition in if statement
diff --git a/stest.c b/stest.c
index 7a7b0bc..e27d3a5 100644
--- a/stest.c
+++ b/stest.c
_AT_@ -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);
}
Received on Sun Jul 25 2021 - 10:56:03 CEST
This archive was generated by hypermail 2.3.0
: Sun Jul 25 2021 - 11:00:32 CEST