%zu not %u, doh.

This commit is contained in:
Nicholas Marriott
2009-10-20 22:17:33 +00:00
parent 6f2169037e
commit 9afb0d739e
2 changed files with 2 additions and 2 deletions

View File

@ -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;