From 7a218cba080bf260a0b649838baca92c0a10a443 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 13 Oct 2020 18:39:36 +0200 Subject: [PATCH] term: subpixel changed: fix build with LOG_ENABLE_DBG=1 --- terminal.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/terminal.c b/terminal.c index c1f8c06c..f1faab7e 100644 --- a/terminal.c +++ b/terminal.c @@ -1586,12 +1586,12 @@ term_font_subpixel_changed(struct terminal *term) #if defined(_DEBUG) && LOG_ENABLE_DBG static const char *const str[] = { - [FCFT_SUBPIXEL_ORDER_DEFAULT] = "default", - [FCFT_SUBPIXEL_ORDER_NONE] = "disabled", - [FCFT_SUBPIXEL_ORDER_HORIZONTAL_RGB] = "RGB", - [FCFT_SUBPIXEL_ORDER_HORIZONTAL_BGR] = "BGR", - [FCFT_SUBPIXEL_ORDER_VERTICAL_RGB] = "V-RGB", - [FCFT_SUBPIXEL_ORDER_VERTICAL_BGR] = "V-BGR", + [FCFT_SUBPIXEL_DEFAULT] = "default", + [FCFT_SUBPIXEL_NONE] = "disabled", + [FCFT_SUBPIXEL_HORIZONTAL_RGB] = "RGB", + [FCFT_SUBPIXEL_HORIZONTAL_BGR] = "BGR", + [FCFT_SUBPIXEL_VERTICAL_RGB] = "V-RGB", + [FCFT_SUBPIXEL_VERTICAL_BGR] = "V-BGR", }; #endif