From 9ec457575d0db6450d8a436426b4a705c49285aa Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Fri, 25 Nov 2011 13:30:45 +0000 Subject: Sync OpenBSD patchset 979: Make window_pane_index work the same as window_index, from Ben Boeckel. --- screen-redraw.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'screen-redraw.c') diff --git a/screen-redraw.c b/screen-redraw.c index a12fa365..c9e05420 100644 --- a/screen-redraw.c +++ b/screen-redraw.c @@ -264,7 +264,7 @@ screen_redraw_draw_number(struct client *c, struct window_pane *wp) { struct tty *tty = &c->tty; struct session *s = c->session; - struct options *oo = &s->options; + struct options *oo = &s->options; struct window *w = wp->window; struct grid_cell gc; u_int idx, px, py, i, j, xoff, yoff; @@ -272,7 +272,8 @@ screen_redraw_draw_number(struct client *c, struct window_pane *wp) char buf[16], *ptr; size_t len; - idx = window_pane_index(w, wp); + if (window_pane_index(wp, &idx) != 0) + fatalx("index not found"); len = xsnprintf(buf, sizeof buf, "%u", idx); if (wp->sx < len) -- cgit