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
@@ -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); |
