replace fwrite by printf.

This commit is contained in:
Aurélien Aptel 2012-02-16 00:59:26 +01:00
parent cb2e0e9c31
commit ff5edcfd70
1 changed files with 1 additions and 1 deletions

2
st.c
View File

@ -1388,7 +1388,7 @@ csihandle(void) {
void void
csidump(void) { csidump(void) {
int i; int i;
fwrite("ESC[", 1, 4, stdout); printf("ESC[");
for(i = 0; i < escseq.len; i++) { for(i = 0; i < escseq.len; i++) {
uint c = escseq.buf[i] & 0xff; uint c = escseq.buf[i] & 0xff;
if(isprint(c)) putchar(c); if(isprint(c)) putchar(c);