From b5bd702c3cb9eab341bfca312b0a5cad3f5368be Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 17 Aug 2022 12:35:40 -0400 Subject: [PATCH] Use tparm, not tiparm tiparm is either really new or just doesn't exist everywhere? --- ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui.c b/ui.c index b2c3b4b..7728402 100644 --- a/ui.c +++ b/ui.c @@ -157,7 +157,7 @@ void uiDraw(void) { if (!to_status_line) return; if (!strcmp(uiTitle, prevTitle)) return; strcpy(prevTitle, uiTitle); - putp(tiparm(to_status_line, 0)); + putp(tparm(to_status_line, 0)); putp(uiTitle); putp(from_status_line); fflush(stdout);