diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-06-25 16:05:39 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-06-25 16:05:39 +0000 |
commit | 947fabc7519f1f674cb4f3fe2ad0d0c4c10afe21 (patch) | |
tree | 9fbe4471a491b7f7446c828e484df546f4cbec19 /screen-redraw.c | |
parent | a03ae97fbf63acaacdc1353eadbd225dd4e03b7b (diff) | |
download | rtmux-947fabc7519f1f674cb4f3fe2ad0d0c4c10afe21.tar.gz rtmux-947fabc7519f1f674cb4f3fe2ad0d0c4c10afe21.tar.bz2 rtmux-947fabc7519f1f674cb4f3fe2ad0d0c4c10afe21.zip |
Unused variables. Found by lint, no binary change.
Diffstat (limited to 'screen-redraw.c')
-rw-r--r-- | screen-redraw.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/screen-redraw.c b/screen-redraw.c index 74cb3a29..76ea1148 100644 --- a/screen-redraw.c +++ b/screen-redraw.c @@ -1,4 +1,4 @@ -/* $Id: screen-redraw.c,v 1.36 2009-05-04 17:58:27 nicm Exp $ */ +/* $OpenBSD: screen-redraw.c,v 1.2 2009/06/25 05:56:44 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -67,7 +67,6 @@ screen_redraw_screen(struct client *c) struct window *w = c->session->curw->window; struct tty *tty = &c->tty; struct window_pane *wp; - struct screen *s; u_int i, j, sx, sy; int status, has_acs; u_char choriz, cvert, cbackg; @@ -110,7 +109,6 @@ screen_redraw_screen(struct client *c) tty_reset(tty); - s = wp->screen; sx = wp->sx; sy = wp->sy; |