1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

chore: fix warnings

This commit is contained in:
Gabor Kiss-Vamosi 2023-11-14 09:40:16 +01:00
parent 9a96b2d099
commit faeb7c48e0

View File

@ -202,7 +202,7 @@ uint32_t lv_anim_speed_clamped(uint32_t speed, uint32_t min_time, uint32_t max_t
{
if(speed > 10000) {
LV_LOG_WARN("speed is truncated to 10000 (was %d"LV_PRIu32")", speed);
LV_LOG_WARN("speed is truncated to 10000 (was %"LV_PRIu32")", speed);
speed = 10230;
}
if(min_time > 10000) {