mirror of
https://github.com/tmux/tmux.git
synced 2024-11-18 02:18:53 +00:00
Cast parameters to tparm, from Christos Zoulas via Leonardo Taccari.
This commit is contained in:
parent
8e24b0bb3e
commit
621bb15b83
@ -616,14 +616,14 @@ tty_term_string3(struct tty_term *term, enum tty_code_code code, int a, int b, i
|
|||||||
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, 0, 0, 0, 0, 0, 0, 0, 0));
|
return (tparm((char *) tty_term_string(term, code), (long)a, 0, 0, 0, 0, 0, 0, 0, 0));
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *
|
const char *
|
||||||
tty_term_ptr2(struct tty_term *term, enum tty_code_code code, const void *a,
|
tty_term_ptr2(struct tty_term *term, enum tty_code_code code, const void *a,
|
||||||
const void *b)
|
const void *b)
|
||||||
{
|
{
|
||||||
return (tparm((char *) tty_term_string(term, code), a, b, 0, 0, 0, 0, 0, 0, 0));
|
return (tparm((char *) tty_term_string(term, code), (long)a, (long)b, 0, 0, 0, 0, 0, 0, 0));
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
Loading…
Reference in New Issue
Block a user