aboutsummaryrefslogtreecommitdiff
path: root/stest.c
diff options
context:
space:
mode:
authorGuilherme Janczak <guilherme.janczak@yandex.com>2021-07-25 01:55:25 +0000
committerHiltjo Posthuma <hiltjo@codemadness.org>2021-07-25 10:55:45 +0200
commit523aa08f51a88c59ad4b1f600f8ce3d122e9e289 (patch)
tree8980c7a389d77c7ec4f5601da47635d60731d7d0 /stest.c
parent1a13d0465d1a6f4f74bc5b07b04c9bd542f20ba6 (diff)
downloaddmenu-523aa08f51a88c59ad4b1f600f8ce3d122e9e289.tar.gz
dmenu-523aa08f51a88c59ad4b1f600f8ce3d122e9e289.tar.bz2
dmenu-523aa08f51a88c59ad4b1f600f8ce3d122e9e289.zip
remove always true condition in if statement
Diffstat (limited to 'stest.c')
-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);
}