aboutsummaryrefslogtreecommitdiff
path: root/src/pipe.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pipe.c')
-rw-r--r--src/pipe.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/pipe.c b/src/pipe.c
index bb18622..b5bbd08 100644
--- a/src/pipe.c
+++ b/src/pipe.c
@@ -42,15 +42,9 @@ void await_change(void) {
// octal 201 is an unused ascii character, so it's safe to use as a
// delimiter
if (chr == '\201') {
- if (chr_on == 0) {
- i++;
- continue;
- }
-
argv[argc][chr_on] = '\0';
argc++;
chr_on = 0;
-
} else {
argv[argc][chr_on] = chr;
chr_on++;