Fix some format specifier nits, from Ben Boeckel.

This commit is contained in:
nicm
2015-03-31 17:45:10 +00:00
parent cd9ccbc1e9
commit 02df86079b
12 changed files with 31 additions and 31 deletions

View File

@ -1216,7 +1216,7 @@ window_copy_write_line(struct window_pane *wp, struct screen_write_ctx *ctx,
limit = screen_size_x(s) + 1;
if (data->inputtype == WINDOW_COPY_NUMERICPREFIX) {
xoff = size = xsnprintf(hdr, limit,
"Repeat: %u", data->numprefix);
"Repeat: %d", data->numprefix);
} else {
xoff = size = xsnprintf(hdr, limit,
"%s: %s", data->inputprompt, data->inputstr);