diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-03-16 17:14:08 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-03-16 17:14:08 +0000 |
commit | b12b5b87ce69f36884891690268e3d0b6d824166 (patch) | |
tree | a35454bc89035fcf311f58277af57597c54b6a83 /usr.bin/tmux/screen-redraw.c | |
parent | 60994cdb738e0d241981deaa4b6df2fed47fe2ce (diff) |
Tidy and rename some bits of status line code.
Diffstat (limited to 'usr.bin/tmux/screen-redraw.c')
-rw-r--r-- | usr.bin/tmux/screen-redraw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/screen-redraw.c b/usr.bin/tmux/screen-redraw.c index 098dd89ed66..dece54490ce 100644 --- a/usr.bin/tmux/screen-redraw.c +++ b/usr.bin/tmux/screen-redraw.c @@ -1,4 +1,4 @@ -/* $OpenBSD: screen-redraw.c,v 1.56 2019/03/12 20:02:47 nicm Exp $ */ +/* $OpenBSD: screen-redraw.c,v 1.57 2019/03/16 17:14:07 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -569,7 +569,7 @@ screen_redraw_draw_status(struct screen_redraw_ctx *ctx) struct client *c = ctx->c; struct window *w = c->session->curw->window; struct tty *tty = &c->tty; - struct screen *s = &c->status.status; + struct screen *s = &c->status.screen; u_int i, y; log_debug("%s: %s @%u", __func__, c->name, w->id); |