From 947fabc7519f1f674cb4f3fe2ad0d0c4c10afe21 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 25 Jun 2009 16:05:39 +0000 Subject: Unused variables. Found by lint, no binary change. --- screen-redraw.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'screen-redraw.c') 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 @@ -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; -- cgit