diff options
| -rw-r--r-- | sys/src/cmd/vt/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/vt/main.c b/sys/src/cmd/vt/main.c index 6bea55e9d..866a340b2 100644 --- a/sys/src/cmd/vt/main.c +++ b/sys/src/cmd/vt/main.c @@ -269,7 +269,7 @@ initialize(int argc, char **argv) if((cs = consctl()) == nil) sysfatal("consctl failed: %r"); cs->raw = rflag; - hc = chancreate(sizeof(Rune*), 0); + hc = chancreate(sizeof(Rune*), 1); if((hostfd = start_host()) >= 0) proccreate(hostreader, nil, BSIZE+1024); |
