mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
skin: Fix minor compile warning caused by printf with size_t
Change-Id: I785d1dd05ac8ef81d817cdd1f7d1867c158bfadf
This commit is contained in:
parent
2f0034e012
commit
8a22d2678a
1 changed files with 2 additions and 2 deletions
|
|
@ -1081,7 +1081,7 @@ static int parse_progressbar_tag(struct skin_element* element,
|
|||
enum
|
||||
{
|
||||
eINVERT = 0, eNOFILL, eNOBORDER, eNOBAR, eSLIDER, eIMAGE,
|
||||
eBACKDROP, eVERTICAL, eHORIZONTAL, eNOTOUCH, eSETTING,
|
||||
eBACKDROP, eVERTICAL, eHORIZONTAL, eNOTOUCH, eSETTING,
|
||||
e_PB_TAG_COUNT
|
||||
};
|
||||
|
||||
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue