aboutsummaryrefslogtreecommitdiff
path: root/src/cmd
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2004-03-04 02:37:30 +0000
committerrsc <devnull@localhost>2004-03-04 02:37:30 +0000
commit315e309098f8b9f6ee8f869ceef8ea0aacce6c60 (patch)
tree8e606dade6594e7d6fba114c7a19cae75eb96708 /src/cmd
parent0b917997919b470edc949b0cf7af62f160885f5e (diff)
downloadplan9port-315e309098f8b9f6ee8f869ceef8ea0aacce6c60.tar.gz
plan9port-315e309098f8b9f6ee8f869ceef8ea0aacce6c60.tar.bz2
plan9port-315e309098f8b9f6ee8f869ceef8ea0aacce6c60.zip
Remove debugging print.
Diffstat (limited to 'src/cmd')
-rw-r--r--src/cmd/rc/io.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cmd/rc/io.c b/src/cmd/rc/io.c
index 61256102..c360b4a0 100644
--- 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){