diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-09-12 13:09:44 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-09-12 13:09:44 +0000 |
commit | 520a86fe7fb2db355548477f134bd3a54b1f8839 (patch) | |
tree | a8b72e0605fe96c4ae405962fd94f94def4ae3f0 /usr.bin | |
parent | 9b17dcefb91d8e0e7d156399fb05eda011e43f61 (diff) |
Doh, trim variables unused now.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/tmux/server.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/tmux/server.c b/usr.bin/tmux/server.c index d0e2a7f7c6e..98fe29984b9 100644 --- a/usr.bin/tmux/server.c +++ b/usr.bin/tmux/server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server.c,v 1.34 2009/09/12 13:01:19 nicm Exp $ */ +/* $OpenBSD: server.c,v 1.35 2009/09/12 13:09:43 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1170,10 +1170,9 @@ server_check_window(struct window *w) { struct window_pane *wp, *wq; struct options *oo = &w->options; - struct client *c; struct session *s; struct winlink *wl; - u_int i, j; + u_int i; int destroyed; destroyed = 1; |