tRemove debugging print. - plan9port - [fork] Plan 9 from user space
(HTM) git clone git://src.adamsgaard.dk/plan9port
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 315e309098f8b9f6ee8f869ceef8ea0aacce6c60
(DIR) parent 0b917997919b470edc949b0cf7af62f160885f5e
(HTM) Author: rsc <devnull@localhost>
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(-)
---
(DIR) 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){