about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2022-08-17 12:35:40 -0400
committerJune McEnroe <june@causal.agency>2022-08-17 12:35:40 -0400
commitb5bd702c3cb9eab341bfca312b0a5cad3f5368be (patch)
tree81595a1c7b2b0d5b2da80c1aa7a91402ecc6dfc9
parentDon't use cached color to route away reply (diff)
downloadcatgirl-b5bd702c3cb9eab341bfca312b0a5cad3f5368be.tar.gz
catgirl-b5bd702c3cb9eab341bfca312b0a5cad3f5368be.zip
Use tparm, not tiparm
tiparm is either really new or just doesn't exist everywhere?
-rw-r--r--ui.c2
1 files changed, 1 insertions, 1 deletions
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);