From: pancake@nopcode.org <unknown>
Date: Fri, 1 Apr 2011 07:32:41 +0000 (+0200)
Subject: apply Nick's patch to fix some error printf to use stderr
X-Git-Url: https://git.owens.tech/wrapped.html/wrapped.html/git?a=commitdiff_plain;h=1ab42fd49e68a11bfbbe5990ebdab2d3ca502178;p=st.git

apply Nick's patch to fix some error printf to use stderr
---

diff --git a/st.c b/st.c
index d528828..1310426 100644
--- a/st.c
+++ b/st.c
@@ -935,7 +935,7 @@ csihandle(void) {
 	switch(escseq.mode) {
 	default:
 	unknown:
-		printf("erresc: unknown csi ");
+		fprintf(stderr, "erresc: unknown csi ");
 		csidump();
 		/* die(""); */
 		break;
@@ -1207,7 +1207,7 @@ tputc(char *c) {
 				term.c.attr.mode &= ~ATTR_GFX;
 				break;
 			default:
-				printf("esc unhandled charset: ESC ( %c\n", ascii);
+				fprintf(stderr, "esc unhandled charset: ESC ( %c\n", ascii);
 			}
 			term.esc = 0;
 		} else {