changeset 314:5ab9d0e5e0f8

Fix giant glaring thinko.
author Rob Landley <rob@landley.net>
date Thu, 28 Aug 2008 17:32:05 -0500
parents d1ae502ee190
children aaac01796688
files toys/count.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/toys/count.c	Fri Aug 15 14:16:53 2008 -0500
+++ b/toys/count.c	Thu Aug 28 17:32:05 2008 -0500
@@ -28,7 +28,7 @@
 		len = xread(0, toybuf, sizeof(toybuf));
 		if (!len) break;
 		size += len;
-		xwrite(1, toybuf, sizeof(toybuf));
+		xwrite(1, toybuf, len);
 		fdprintf(2, "%"PRIu64" bytes\r", size);
 	}
 	fdprintf(2,"\n");