tparm() fix for Solaris.

pull/957/head
Nicholas Marriott 2017-06-04 11:27:35 +01:00
parent 8ec6c323b6
commit 1c83c0ebcd
1 changed files with 1 additions and 1 deletions

View File

@ -599,7 +599,7 @@ tty_term_string2(struct tty_term *term, enum tty_code_code code, int a, int b)
const char *
tty_term_string3(struct tty_term *term, enum tty_code_code code, int a, int b, int c)
{
return (tparm((char *) tty_term_string(term, code), a, b, c));
return (tparm((char *) tty_term_string(term, code), a, b, c, 0, 0, 0, 0, 0, 0));
}
const char *