tRemove debugging print. - plan9port - [fork] Plan 9 from user space | |
git clone git://src.adamsgaard.dk/plan9port | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 315e309098f8b9f6ee8f869ceef8ea0aacce6c60 | |
parent 0b917997919b470edc949b0cf7af62f160885f5e | |
Author: rsc | |
Date: Thu, 4 Mar 2004 02:37:30 +0000 Remove debugging print. Diffstat: M src/cmd/rc/io.c | 2 -- 1 file changed, 0 insertions(+), 2 deletions(-) --- | |
diff --git a/src/cmd/rc/io.c b/src/cmd/rc/io.c | |
t@@ -127,12 +127,10 @@ void flush(io *f) } io *openfd(int fd){ io *f; -fprint(2, "in openfd\n"); f=new(struct io); f->fd=fd; f->bufp=f->ebuf=f->buf; f->strp=0; -fprint(2, "in openfd\n"); return f; } io *openstr(void){ |