From 8e90d61ef72815b8b5957b5d680c4d8ab443116d Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sat, 18 Nov 2023 19:30:26 -0800 Subject: modules/asc: fix asc_setup_t.halign type mismatch This was surprisingly not angering gcc but throws a warning under clang, it's a real mistake. --- src/modules/asc/asc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modules/asc/asc.c b/src/modules/asc/asc.c index 50f81b3..39d10e0 100644 --- a/src/modules/asc/asc.c +++ b/src/modules/asc/asc.c @@ -39,7 +39,8 @@ typedef struct asc_setup_t { const char *string; asc_justify_t justify; - txt_halign_t halign, valign; + txt_halign_t halign; + txt_valign_t valign; float hoffset, voffset; float x, y; } asc_setup_t; -- cgit v1.2.1