X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=common%2Fcmd_mtdparts.c;h=422c069513843f930ce1eeccf2a9aa2e89b7fcf1;hb=f101e4bd37030930f19dc5108c59544b2ee25208;hp=3cb0571df39a4dc0797f93df887dea76768f6484;hpb=6defdc0b5552ab1af4a66a8abac8196cbb6b9e15;p=oweals%2Fu-boot.git diff --git a/common/cmd_mtdparts.c b/common/cmd_mtdparts.c index 3cb0571df3..422c069513 100644 --- a/common/cmd_mtdparts.c +++ b/common/cmd_mtdparts.c @@ -862,7 +862,7 @@ static int device_parse(const char *const mtd_dev, const char **ret, struct mtd_ debug("dev type = %d (%s), dev num = %d, mtd-id = %s\n", id->type, MTD_DEV_TYPE(id->type), id->num, id->mtd_id); - debug("parsing partitions %.*s\n", (pend ? pend - p : strlen(p)), p); + debug("parsing partitions %.*s\n", (int)(pend ? pend - p : strlen(p)), p); /* parse partitions */ @@ -1007,7 +1007,7 @@ static struct mtdids* id_find_by_mtd_id(const char *mtd_id, unsigned int mtd_id_ list_for_each(entry, &mtdids) { id = list_entry(entry, struct mtdids, link); - debug("entry: '%s' (len = %d)\n", + debug("entry: '%s' (len = %zu)\n", id->mtd_id, strlen(id->mtd_id)); if (mtd_id_len != strlen(id->mtd_id))