aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/st.c b/st.c
index 65829a8..0c876f5 100644
--- a/st.c
+++ b/st.c
@@ -392,10 +392,8 @@ ttyread(void) {
392 392
393 if((ret = read(cmdfd, buf, LEN(buf))) < 0) 393 if((ret = read(cmdfd, buf, LEN(buf))) < 0)
394 die("Couldn't read from shell: %s\n", SERRNO); 394 die("Couldn't read from shell: %s\n", SERRNO);
395 else { 395 else
396 printf("ttyread %d\n", ret);
397 tputs(buf, ret); 396 tputs(buf, ret);
398 }
399} 397}
400 398
401void 399void