commit 874b2a730cc01508eb444dfebaa775612bd84fff
parent 9d34f123208e1304e5f8b0ad61b3aaa4a74e8854
Author: Anselm R. Garbe <garbeam@wmii.de>
Date: Tue, 23 May 2006 08:34:31 +0200
do not write to stdin, but to stdout, wmiir
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmd/wmiir.c b/cmd/wmiir.c
@@ -226,7 +226,7 @@ xread(char *file)
}
while((count = ixp_client_read(&c, fid, offset, result, IXP_MAX_MSG)) > 0) {
- write(0, result, count);
+ write(1, result, count);
offset += count;
}
if(count == -1) {