mirror of
https://git.code.sf.net/p/ngspice/ngspice
synced 2026-08-22 05:47:42 +02:00
bug fix, out_send() erroneously interpreting printf %-style sequences
This commit is contained in:
@@ -373,7 +373,11 @@ void term_home(void) {}
|
|||||||
void term_cleol(void) {}
|
void term_cleol(void) {}
|
||||||
void tcap_init(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
|
void
|
||||||
out_printf(char *fmt, ...)
|
out_printf(char *fmt, ...)
|
||||||
|
|||||||
Reference in New Issue
Block a user