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

chore(image_decoder): fix compile error when compiling testcase (#6223)

This commit is contained in:
Benign X 2024-05-15 19:20:54 +08:00 committed by GitHub
parent a891ccd340
commit 49a99468a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -131,7 +131,7 @@ lv_result_t lv_image_decoder_open(lv_image_decoder_dsc_t * dsc, const void * src
dsc->src_type == LV_IMAGE_SRC_FILE ? (const char *)src : "c-array",
dsc->decoded->header.w,
dsc->decoded->header.h,
dsc->decoded->data,
(void *)dsc->decoded->data,
dsc->decoded->header.cf);
}