1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

fix(tiny_ttf): Fix formatting specifier macro in lv_tiny_ttf_set_size (#6731)

This commit is contained in:
Visa Harvey 2024-08-26 10:54:00 +03:00 committed by GitHub
parent 5a004a4db3
commit 016b397642
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -123,7 +123,7 @@ static void lv_tiny_ttf_cache_create(ttf_font_desc_t * dsc);
void lv_tiny_ttf_set_size(lv_font_t * font, int32_t font_size)
{
if(font_size <= 0) {
LV_LOG_ERROR("invalid font size: %"PRIx32, font_size);
LV_LOG_ERROR("invalid font size: %"LV_PRIx32, font_size);
return;
}
ttf_font_desc_t * dsc = (ttf_font_desc_t *)font->dsc;