diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-06-04 11:27:35 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-06-04 11:27:35 +0100 |
commit | 1c83c0ebcd483c668f02f5f7a8cb80f8a0dc162c (patch) | |
tree | ae54f84cf030962bcfb63f2c535ccf2a8199c8d6 | |
parent | 8ec6c323b6822330c39555780defbce75d3e0119 (diff) | |
download | rtmux-1c83c0ebcd483c668f02f5f7a8cb80f8a0dc162c.tar.gz rtmux-1c83c0ebcd483c668f02f5f7a8cb80f8a0dc162c.tar.bz2 rtmux-1c83c0ebcd483c668f02f5f7a8cb80f8a0dc162c.zip |
tparm() fix for Solaris.
-rw-r--r-- | tty-term.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 * |