diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2023-11-18 19:30:26 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2023-11-18 19:30:26 -0800 |
commit | 8e90d61ef72815b8b5957b5d680c4d8ab443116d (patch) | |
tree | 5a078eef03ed247aa2e09128ce86e9f9363b0a3e /src | |
parent | d45d559135c5861ab3d5d46e1c94f1e1764f8b5f (diff) |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/asc/asc.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; |