mirror of
https://github.com/tmux/tmux.git
synced 2025-01-12 03:08:46 +00:00
tparm requires 10 arguments on Solaris.
This commit is contained in:
parent
4564624f2c
commit
c80f75f4f4
@ -499,13 +499,13 @@ tty_term_string1(struct tty_term *term, enum tty_code_code code, int a)
|
|||||||
const char *
|
const char *
|
||||||
tty_term_string2(struct tty_term *term, enum tty_code_code code, int a, int b)
|
tty_term_string2(struct tty_term *term, enum tty_code_code code, int a, int b)
|
||||||
{
|
{
|
||||||
return (tparm((char *) tty_term_string(term, code), a, b));
|
return (tparm((char *) tty_term_string(term, code), a, b, 0, 0, 0, 0, 0, 0, 0));
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *
|
const char *
|
||||||
tty_term_ptr1(struct tty_term *term, enum tty_code_code code, const void *a)
|
tty_term_ptr1(struct tty_term *term, enum tty_code_code code, const void *a)
|
||||||
{
|
{
|
||||||
return (tparm((char *) tty_term_string(term, code), a));
|
return (tparm((char *) tty_term_string(term, code), a, 0, 0, 0, 0, 0, 0, 0, 0));
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *
|
const char *
|
||||||
|
Loading…
Reference in New Issue
Block a user