From d83cbc27b99427d00846832a73810f285d8f0d05 Mon Sep 17 00:00:00 2001
From: Matthias-Christian Ott <ott@enolink.de>
Date: Sun, 15 Jun 2008 17:31:24 +0200
Subject: [PATCH] simplify flushing

---
 std.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/std.c b/std.c
index b0142fe..84048e4 100644
--- a/std.c
+++ b/std.c
@@ -279,7 +279,7 @@ main(int argc, char *argv[]) {
 		r = select(ptm + 1, &rfds, NULL, NULL, NULL);
 		if(r == -1)
 			eprintn("error, cannot select");
-		if(FD_ISSET(ptm, &rfds))
+		if(FD_ISSET(ptm, &rfds)) {
 			do {
 				c = getch();
 				switch(c) {
@@ -289,8 +289,9 @@ main(int argc, char *argv[]) {
 				default:
 					putchar(c);
 				}
-				fflush(stdout);
 			} while(rbuf.i < rbuf.n);
+			fflush(stdout);
+		}
 	}
 	return 0;
 }