diff options
author | 2009-10-21 19:27:09 +0000 | |
---|---|---|
committer | 2009-10-21 19:27:09 +0000 | |
commit | 4c9c9306e10d3cd22b786ca00b0378ce411e415a (patch) | |
tree | 6a250ba7628cd17dd07c5f5334caa2edbf2c4d61 /usr.bin/tmux/tty.c | |
parent | sync to 1.9.9, featuring: (diff) | |
download | wireguard-openbsd-4c9c9306e10d3cd22b786ca00b0378ce411e415a.tar.xz wireguard-openbsd-4c9c9306e10d3cd22b786ca00b0378ce411e415a.zip |
Unused variable.
Diffstat (limited to 'usr.bin/tmux/tty.c')
-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); |