diff options
author | rsc <devnull@localhost> | 2003-12-02 21:49:45 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2003-12-02 21:49:45 +0000 |
commit | 1ccf253eb2479d536f690f1805a7719a7cfe96dc (patch) | |
tree | fd791a02997c6a1b3ca3993361a3910df64bb0da | |
parent | ab5efca82f34bf17a46bd6d87cc5fa887a7095a7 (diff) | |
download | plan9port-1ccf253eb2479d536f690f1805a7719a7cfe96dc.tar.gz plan9port-1ccf253eb2479d536f690f1805a7719a7cfe96dc.tar.bz2 plan9port-1ccf253eb2479d536f690f1805a7719a7cfe96dc.zip |
fix stack size (oops)
-rw-r--r-- | src/cmd/9term/9term.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/9term/9term.c b/src/cmd/9term/9term.c index 5b15e75b..1386c158 100644 --- a/src/cmd/9term/9term.c +++ b/src/cmd/9term/9term.c @@ -151,7 +151,7 @@ void hoststart(void) { hostc = chancreate(sizeof(int), 0); - proccreate(hostproc, hostc, 1024); + proccreate(hostproc, hostc, 32*1024); } void |