summaryrefslogtreecommitdiffstats
path: root/screen-redraw.c
diff options
context:
space:
mode:
authornicm <nicm>2018-02-05 08:21:54 +0000
committernicm <nicm>2018-02-05 08:21:54 +0000
commit7f4513ec34862805b06b2ff776785a36fdfec796 (patch)
treef9647c1b56edf455f82298de9c88ca6a63c99da1 /screen-redraw.c
parent0817132f97bdcf475cd8641630e10133ebd8207d (diff)
Add struct status_line to hold status line members of struct client, not
used yet but will be soon. From Thomas Adam.
Diffstat (limited to 'screen-redraw.c')
-rw-r--r--screen-redraw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/screen-redraw.c b/screen-redraw.c
index 1083642d..df966aff 100644
--- a/screen-redraw.c
+++ b/screen-redraw.c
@@ -563,7 +563,7 @@ screen_redraw_draw_status(struct client *c, u_int lines, u_int top)
else
y = tty->sy - lines;
for (i = 0; i < lines; i++)
- tty_draw_line(tty, NULL, &c->status, i, 0, y);
+ tty_draw_line(tty, NULL, &c->status.status, i, 0, y);
}
/* Draw number on a pane. */