diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-10-21 19:27:10 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-10-21 19:27:10 +0000 |
commit | 938a76644489d9170c4cebf2ea556029aeccbdf4 (patch) | |
tree | e1a126e9f9b7c46bbd86a1652e5de87e282a55d6 /usr.bin/tmux | |
parent | f25c32e303567fa59cdd5d7a6851369d4d3814dd (diff) |
Unused variable.
Diffstat (limited to 'usr.bin/tmux')
-rw-r--r-- | usr.bin/tmux/tty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tty.c b/usr.bin/tmux/tty.c index 282b3eea38c..ab0b7d9a2d9 100644 --- a/usr.bin/tmux/tty.c +++ b/usr.bin/tmux/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.57 2009/10/21 16:52:30 nicm Exp $ */ +/* $OpenBSD: tty.c,v 1.58 2009/10/21 19:27:09 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -851,7 +851,7 @@ tty_cmd_cell(struct tty *tty, const struct tty_ctx *ctx) { struct window_pane *wp = ctx->wp; struct screen *s = wp->screen; - u_int cx, sx; + u_int cx; tty_region_pane(tty, ctx, ctx->orupper, ctx->orlower); |