summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/input.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2009-10-20 22:17:33 +0000
committernicm <nicm@openbsd.org>2009-10-20 22:17:33 +0000
commit5066cd905e2b5eb04cac463aaadf95e75cb74283 (patch)
tree88aa744e77e03e8056b17570517084244e2479b3 /usr.bin/tmux/input.c
parentSort out stdout before stdin/stderr in case the stdout side of the pipe got one (diff)
downloadwireguard-openbsd-5066cd905e2b5eb04cac463aaadf95e75cb74283.tar.xz
wireguard-openbsd-5066cd905e2b5eb04cac463aaadf95e75cb74283.zip
%zu not %u, doh.
Diffstat (limited to 'usr.bin/tmux/input.c')
-rw-r--r--usr.bin/tmux/input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/input.c b/usr.bin/tmux/input.c
index 6d3cf4f17b8..66b098ce6f9 100644
--- a/usr.bin/tmux/input.c
+++ b/usr.bin/tmux/input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: input.c,v 1.18 2009/10/20 19:18:28 nicm Exp $ */
+/* $OpenBSD: input.c,v 1.19 2009/10/20 22:17:33 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -590,7 +590,7 @@ input_handle_character(u_char ch, struct input_ctx *ictx)
if (ch > 0x7f && options_get_number(&wp->window->options, "utf8")) {
if (utf8_open(&ictx->utf8data, ch)) {
- log_debug2("-- utf8 size %u: %zu: %hhu (%c)",
+ log_debug2("-- utf8 size %zu: %zu: %hhu (%c)",
ictx->utf8data.size, ictx->off, ch, ch);
input_state(ictx, input_state_utf8);
return;