Browse Source

bug fix, out_send() erroneously interpreting printf %-style sequences

rlar 14 years ago
parent
commit
c4d0feb6cc
  1. 6
      src/frontend/terminal.c

6
src/frontend/terminal.c

@ -373,7 +373,11 @@ void term_home(void) {}
void term_cleol(void) {}
void tcap_init(void) {}
void out_send(char *string) {fprintf(cp_out,string);}
void
out_send(char *string)
{
fprintf(cp_out, "%s", string);
}
void
out_printf(char *fmt, ...)

Loading…
Cancel
Save