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

This commit is contained in:
rlar 2012-08-19 12:20:33 +02:00
parent b9b9f6fd1c
commit c4d0feb6cc
1 changed files with 5 additions and 1 deletions

View File

@ -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, ...)