aboutsummaryrefslogtreecommitdiffstats
path: root/src/gdisp/mcufont/mf_justify.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gdisp/mcufont/mf_justify.c')
-rw-r--r--src/gdisp/mcufont/mf_justify.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gdisp/mcufont/mf_justify.c b/src/gdisp/mcufont/mf_justify.c
index 072eef0c..488478ef 100644
--- a/src/gdisp/mcufont/mf_justify.c
+++ b/src/gdisp/mcufont/mf_justify.c
@@ -82,7 +82,7 @@ static uint16_t strip_spaces(mf_str text, uint16_t count, mf_char *last_char)
{
i++;
tmp = mf_getchar(&text);
- if (tmp != ' ' && tmp != 0xA0 && tmp != '\n' &&
+ if (tmp != ' ' && tmp != (mf_char)0xA0 && tmp != '\n' &&
tmp != '\r' && tmp != '\t')
{
result = i;
@@ -234,6 +234,7 @@ void mf_render_justified(const struct mf_font_s *font,
mf_character_callback_t callback,
void *state)
{
+ (void) width;
mf_render_aligned(font, x0, y0, MF_ALIGN_LEFT, text, count, callback, state);
}