From 078f790b721fc9f998f333081396d57dbc2adee9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Fri, 18 Jun 2021 15:56:34 +0200 Subject: [PATCH] term: fix regression after merging #599 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Don’t increment ‘j’ twice in each loop iteration, and fix typo in loop condition (check ‘j’, not ‘i’). --- terminal.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/terminal.c b/terminal.c index 1e1a7f78..b916868b 100644 --- a/terminal.c +++ b/terminal.c @@ -970,9 +970,9 @@ load_fonts_from_conf(struct terminal *term) for (size_t i = 0; i < 4; i++) { const struct config_font_list *font_list = &conf->fonts[i]; - for (size_t j = 0; i < font_list->count; j++) { + for (size_t j = 0; j < font_list->count; j++) { const struct config_font *font = &font_list->arr[j]; - term->font_sizes[i][j++] = (struct config_font){ + term->font_sizes[i][j] = (struct config_font){ .pt_size = font->pt_size, .px_size = font->px_size}; } } @@ -1183,7 +1183,7 @@ term_init(const struct config *conf, struct fdm *fdm, struct reaper *reaper, const struct config_font_list *font_list = &conf->fonts[i]; for (size_t j = 0; j < font_list->count; j++) { const struct config_font *font = &font_list->arr[j]; - term->font_sizes[i][j++] = (struct config_font){ + term->font_sizes[i][j] = (struct config_font){ .pt_size = font->pt_size, .px_size = font->px_size}; } }