diff options
author | Vasili Galka <vvv444@gmail.com> | 2014-08-26 13:45:48 +0300 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-09-15 13:32:55 -0400 |
commit | 5d69a5d178a1fc3874b8d18e5be3e520f6acaca5 (patch) | |
tree | 132b0f4153d5a668f5cac8c44192ea41b57ee57b /common/cmd_mtdparts.c | |
parent | 2dd2cde11c80f7f9dd749e0227825533f6ae58a3 (diff) | |
download | u-boot-5d69a5d178a1fc3874b8d18e5be3e520f6acaca5.tar.gz u-boot-5d69a5d178a1fc3874b8d18e5be3e520f6acaca5.tar.bz2 u-boot-5d69a5d178a1fc3874b8d18e5be3e520f6acaca5.zip |
Fix a few printf argument verification warnings
The parameters of size_t type shall be formatted using "%zu" and not
using "%d".
Precision argument for the "%.*s" parameters shall be of int type.
Signed-off-by: Vasili Galka <vvv444@gmail.com>
Diffstat (limited to 'common/cmd_mtdparts.c')
-rw-r--r-- | common/cmd_mtdparts.c | 4 |
1 files changed, 2 insertions, 2 deletions
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)) |