Use tparm, not tiparm

tiparm is either really new or just doesn't exist everywhere?
weechat-hashes
June McEnroe 2022-08-17 12:35:40 -04:00
parent c273621244
commit b5bd702c3c
1 changed files with 1 additions and 1 deletions

2
ui.c
View File

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