Browse Source

replace fwrite by printf.

master
Aurélien Aptel 13 years ago
parent
commit
ff5edcfd70
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      st.c

+ 1
- 1
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);


Loading…
Cancel
Save