diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-06-04 09:02:58 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-06-04 09:02:58 +0000 |
commit | bcc29bdae3b156a444ed837eeb8ab35eeb068919 (patch) | |
tree | bf45e7c6f44ccb854d77f377cb6494cf004e41a8 | |
parent | 1e19e4992bacd93b3ad49d2ede105234949b3408 (diff) |
Remove unused variable.
-rw-r--r-- | usr.bin/tmux/utf8.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/utf8.c b/usr.bin/tmux/utf8.c index 53627d28eb4..c0de715cff3 100644 --- a/usr.bin/tmux/utf8.c +++ b/usr.bin/tmux/utf8.c @@ -1,4 +1,4 @@ -/* $OpenBSD: utf8.c,v 1.38 2017/06/04 09:02:36 nicm Exp $ */ +/* $OpenBSD: utf8.c,v 1.39 2017/06/04 09:02:57 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -214,7 +214,6 @@ utf8_isvalid(const char *s) struct utf8_data ud; const char *end; enum utf8_state more; - size_t i; end = s + strlen(s); while (s < end) { |