projects
/
suckless
/
dmenu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a13d04
)
remove always true condition in if statement
author
Guilherme Janczak
<guilherme.janczak@yandex.com>
Sun, 25 Jul 2021 01:55:25 +0000
(
01:55
+0000)
committer
Hiltjo Posthuma
<hiltjo@codemadness.org>
Sun, 25 Jul 2021 08:55:45 +0000
(10:55 +0200)
stest.c
patch
|
blob
|
history
diff --git
a/stest.c
b/stest.c
index 7a7b0bcfc4536ab89093f66237811ad51045ddcc..e27d3a5e571c3542106f14ee9a2b1f4fbc26dd9b 100644
(file)
--- 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);
}