diff options
author | 2009-11-05 19:32:34 +0000 | |
---|---|---|
committer | 2009-11-05 19:32:34 +0000 | |
commit | 463f30cf1ba34349f9266890f40d31afdb123503 (patch) | |
tree | 4f717796d8eb4f112a6f74593541fce6f5aa2eec | |
parent | Switch the tty key tree over to an (unbalanced) ternary tree which allows (diff) | |
download | wireguard-openbsd-463f30cf1ba34349f9266890f40d31afdb123503.tar.xz wireguard-openbsd-463f30cf1ba34349f9266890f40d31afdb123503.zip |
Unused variable. Aargh.
-rw-r--r-- | usr.bin/tmux/tty-keys.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tty-keys.c b/usr.bin/tmux/tty-keys.c index 68cc01a9957..56ffab1a0ba 100644 --- a/usr.bin/tmux/tty-keys.c +++ b/usr.bin/tmux/tty-keys.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty-keys.c,v 1.16 2009/11/05 19:29:41 nicm Exp $ */ +/* $OpenBSD: tty-keys.c,v 1.17 2009/11/05 19:32:34 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -350,7 +350,7 @@ tty_keys_next(struct tty *tty) struct tty_key *tk; struct timeval tv; struct mouse_event mouse; - char *buf, *ptr; + char *buf; size_t len, size; cc_t bspace; int key; |