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

fix(gif) replace printf statement with LVGL logging

This commit is contained in:
embeddedt 2021-10-20 18:00:27 -04:00 committed by GitHub
parent 13b7fd8dae
commit 56f62b8d73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,7 @@ static gd_GIF * gif_open(gd_GIF * gif_base)
/* Header */
f_gif_read(gif_base, sigver, 3);
if (memcmp(sigver, "GIF", 3) != 0) {
fprintf(stderr, "invalid signature\n");
LV_LOG_WARN("invalid signature\n");
goto fail;
}
/* Version */