commit 315e309098f8b9f6ee8f869ceef8ea0aacce6c60
parent 0b917997919b470edc949b0cf7af62f160885f5e
Author: rsc <devnull@localhost>
Date: Thu, 4 Mar 2004 02:37:30 +0000
Remove debugging print.
Diffstat:
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/src/cmd/rc/io.c b/src/cmd/rc/io.c
@@ -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){