summaryrefslogtreecommitdiffstats
path: root/input.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-10-23 17:21:34 +0000
committerTiago Cunha <tcunha@gmx.com>2009-10-23 17:21:34 +0000
commit21b23f8e54fadd2aba369ef4f7ce0c8784168226 (patch)
treefdbd09671c54da275344304171fb906ed33806b0 /input.c
parentfce889235ca27879ae326b6208afaf3a759acc66 (diff)
Sync OpenBSD patchset 424:
%zu not %u, doh.
Diffstat (limited to 'input.c')
-rw-r--r--input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/input.c b/input.c
index 612902a2..09bd5c20 100644
--- a/input.c
+++ b/input.c
@@ -1,4 +1,4 @@
-/* $Id: input.c,v 1.98 2009-10-23 17:16:24 tcunha Exp $ */
+/* $Id: input.c,v 1.99 2009-10-23 17:21:34 tcunha 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;