skin: Fix minor compile warning caused by printf with size_t

Change-Id: I785d1dd05ac8ef81d817cdd1f7d1867c158bfadf
This commit is contained in:
Solomon Peachy 2023-06-22 15:59:13 -04:00
parent 2f0034e012
commit 8a22d2678a

View file

@ -1962,7 +1962,7 @@ static int load_skin_bmp(struct wps_data *wps_data, struct gui_img *img, char* b
if (buf_reqd == CLB_READ_ERR)
{
/* Abort if we can't load an image */
DEBUGF("Couldn't load '%s' (%ld)\n", img_path, buf_reqd);
DEBUGF("Couldn't load '%s' (%zu)\n", img_path, buf_reqd);
}
else
{