diff options
author | June McEnroe | 2022-08-17 12:35:40 -0400 |
---|---|---|
committer | June McEnroe | 2022-08-17 12:35:40 -0400 |
commit | b5bd702c3cb9eab341bfca312b0a5cad3f5368be (patch) | |
tree | 81595a1c7b2b0d5b2da80c1aa7a91402ecc6dfc9 | |
parent | c273621244156b351468e3c928387166b24f5ff4 (diff) |
Use tparm, not tiparm
tiparm is either really new or just doesn't exist everywhere?
-rw-r--r-- | ui.c | 2 |
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); |