diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2023-06-22 15:59:13 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2023-06-22 15:59:53 -0400 |
commit | 8a22d2678a9fff97fd159a4b2eb45e637f08c79f (patch) | |
tree | 5cd975018267f3b00badf18a55e8016da74b9684 | |
parent | 2f0034e0128bc8c634e533a53a5c6f3daf17bcba (diff) | |
download | rockbox-8a22d2678a.tar.gz rockbox-8a22d2678a.zip |
skin: Fix minor compile warning caused by printf with size_t
Change-Id: I785d1dd05ac8ef81d817cdd1f7d1867c158bfadf
-rw-r--r-- | apps/gui/skin_engine/skin_parser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c index b801eaae12..a7e55c2e0e 100644 --- a/apps/gui/skin_engine/skin_parser.c +++ b/apps/gui/skin_engine/skin_parser.c @@ -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 { |