aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2011-06-26 23:59:23 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2011-06-26 23:59:23 +0000
commitc80f75f4f428c8c236fe9d0bb87b66893fbd5ccb (patch)
tree9252c0e848230ae45af985d8ce2dc088031411ad
parent4564624f2c9af0b37b698ffa9bd6ebeb053b2817 (diff)
downloadrtmux-c80f75f4f428c8c236fe9d0bb87b66893fbd5ccb.tar.gz
rtmux-c80f75f4f428c8c236fe9d0bb87b66893fbd5ccb.tar.bz2
rtmux-c80f75f4f428c8c236fe9d0bb87b66893fbd5ccb.zip
tparm requires 10 arguments on Solaris.
-rw-r--r--tty-term.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tty-term.c b/tty-term.c
index 7ee3fac9..b53c3777 100644
--- a/tty-term.c
+++ b/tty-term.c
@@ -499,13 +499,13 @@ tty_term_string1(struct tty_term *term, enum tty_code_code code, int a)
const char *
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 *
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 *