From 4a93294152efb921bb5bada71164c47a57518e31 Mon Sep 17 00:00:00 2001 From: nicm Date: Sat, 18 Apr 2020 14:21:39 +0000 Subject: Use size_t not u_int for the bytes counters and fix a const missing. --- format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'format.c') diff --git a/format.c b/format.c index 53ef1604..df610a50 100644 --- a/format.c +++ b/format.c @@ -954,7 +954,7 @@ format_cb_cursor_character(struct format_tree *ft, struct format_entry *fe) char * format_grid_word(struct grid *gd, u_int x, u_int y) { - struct grid_line *gl; + const struct grid_line *gl; struct grid_cell gc; const char *ws; struct utf8_data *ud = NULL; -- cgit