summaryrefslogtreecommitdiff
path: root/stest.c
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2022-05-15 11:30:18 -0500
committerGitHub <noreply@github.com>2022-05-15 11:30:18 -0500
commitb79faf87008de58e6a76aa8e6baf0226eb29f42b (patch)
tree83b01e1645adf34a2134a3383b3fc93d4ecd7404 /stest.c
parent297f5a371a103bf59534d91221cd32841db48771 (diff)
update
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);
}