mirror of
https://github.com/tmate-io/tmate.git
synced 2026-01-23 02:24:06 +00:00
Unused variables. Found by lint, no binary change.
This commit is contained in:
parent
74d0851ac5
commit
83078bdcbc
2 changed files with 1 additions and 5 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
4
tty.c
4
tty.c
|
|
@ -759,9 +759,7 @@ tty_cmd_clearendofscreen(
|
|||
struct tty *tty, struct window_pane *wp, unused va_list ap)
|
||||
{
|
||||
struct screen *s = wp->screen;
|
||||
u_int i, j, oy;
|
||||
|
||||
oy = wp->yoff;
|
||||
u_int i, j;
|
||||
|
||||
tty_reset(tty);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue