summaryrefslogtreecommitdiffstats
path: root/arch/arm/lib
diff options
context:
space:
mode:
authorVadzim Dambrouski <pftbest@gmail.com>2015-10-19 19:40:15 +0300
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2015-11-10 09:45:36 +0100
commit7bdf75ca5cf253276e3cfcf5af8da9029e50790f (patch)
tree2e8233f5b04ae5945c02eef9c528ceff859d55cf /arch/arm/lib
parent432a6241bdb70b98ead8f58bbf717d3f7fe699a8 (diff)
downloadblackbird-obmc-uboot-7bdf75ca5cf253276e3cfcf5af8da9029e50790f.tar.gz
blackbird-obmc-uboot-7bdf75ca5cf253276e3cfcf5af8da9029e50790f.zip
arm: fix compile warnings when semihosting is enabled on ARMv7M target.
This patch fixes compile warnings like this: warning: format '%lu' expects argument of type 'long unsigned int', but argument 5 has type 'size_t' In C99 standard you can use %zu modifier to print size_t values. Signed-off-by: Vadzim Dambrouski <pftbest@gmail.com>
Diffstat (limited to 'arch/arm/lib')
-rw-r--r--arch/arm/lib/semihosting.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/lib/semihosting.c b/arch/arm/lib/semihosting.c
index ed5e8e426e..e32ad90945 100644
--- a/arch/arm/lib/semihosting.c
+++ b/arch/arm/lib/semihosting.c
@@ -92,7 +92,7 @@ static long smh_read(long fd, void *memp, size_t len)
size_t len;
} read;
- debug("%s: fd %ld, memp %p, len %lu\n", __func__, fd, memp, len);
+ debug("%s: fd %ld, memp %p, len %zu\n", __func__, fd, memp, len);
read.fd = fd;
read.memp = memp;
@@ -106,7 +106,7 @@ static long smh_read(long fd, void *memp, size_t len)
* hard to maintain partial read loops and such, just fail
* with an error message.
*/
- printf("%s: ERROR ret %ld, fd %ld, len %lu memp %p\n",
+ printf("%s: ERROR ret %ld, fd %ld, len %zu memp %p\n",
__func__, ret, fd, len, memp);
return -1;
}
OpenPOWER on IntegriCloud