From 1c83c0ebcd483c668f02f5f7a8cb80f8a0dc162c Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 4 Jun 2017 11:27:35 +0100 Subject: tparm() fix for Solaris. --- tty-term.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tty-term.c b/tty-term.c index 5f143917..cd7be5f9 100644 --- a/tty-term.c +++ b/tty-term.c @@ -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 * -- cgit