mirror of
https://github.com/tmux/tmux.git
synced 2025-09-05 16:27:03 +00:00
tparm() fix for Solaris.
This commit is contained in:
@ -599,7 +599,7 @@ tty_term_string2(struct tty_term *term, enum tty_code_code code, int a, int b)
|
|||||||
const char *
|
const char *
|
||||||
tty_term_string3(struct tty_term *term, enum tty_code_code code, int a, int b, int c)
|
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 *
|
const char *
|
||||||
|
Reference in New Issue
Block a user