From bd402081713cf3e65272673f1761e9a4d0a95e9a Mon Sep 17 00:00:00 2001 From: bakkeby Date: Mon, 16 Aug 2021 10:39:14 +0200 Subject: [PATCH] remove always true condition in if statement ref. https://git.suckless.org/dmenu/commit/523aa08f51a88c59ad4b1f600f8ce3d122e9e289.html --- stest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }