diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 03:34:56 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 03:34:56 +0000 |
commit | dd4d88cfe705d1a5f525daab2b9c1fe51774eb7a (patch) | |
tree | 229b4141b3bda68638c123d1289746993527b61c /debian/patches/upstream-168eab11a7.diff | |
parent | Merging upstream version 3.4. (diff) | |
download | tmux-dd4d88cfe705d1a5f525daab2b9c1fe51774eb7a.tar.xz tmux-dd4d88cfe705d1a5f525daab2b9c1fe51774eb7a.zip |
Adding debian version 3.4-1.debian/3.4-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/upstream-168eab11a7.diff')
-rw-r--r-- | debian/patches/upstream-168eab11a7.diff | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/debian/patches/upstream-168eab11a7.diff b/debian/patches/upstream-168eab11a7.diff deleted file mode 100644 index be8a90c..0000000 --- a/debian/patches/upstream-168eab11a7.diff +++ /dev/null @@ -1,25 +0,0 @@ -From 736f7f223235bc050d71565ef243739ef27af066 Mon Sep 17 00:00:00 2001 -From: Nicholas Marriott <nicholas.marriott@gmail.com> -Date: Fri, 28 Apr 2023 07:23:53 +0100 -Subject: [PATCH 3/4] Cast both strings for tparm. - ---- - tty-term.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/tty-term.c b/tty-term.c -index 18b174208d..f2b548d811 100644 ---- a/tty-term.c -+++ b/tty-term.c -@@ -839,7 +839,7 @@ tty_term_string_ss(struct tty_term *term, enum tty_code_code code, - #elif defined(HAVE_TIPARM) - s = tiparm(x, a, b); - #else -- s = tparm((char *)x, (long)a, b, 0, 0, 0, 0, 0, 0, 0); -+ s = tparm((char *)x, (long)a, (long)b, 0, 0, 0, 0, 0, 0, 0); - #endif - if (s == NULL) - fatalx("could not expand %s", tty_term_codes[code].name); --- -2.39.2 - |