projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
432a624
)
arm: fix compile warnings when semihosting is enabled on ARMv7M target.
author
Vadzim Dambrouski
<pftbest@gmail.com>
Mon, 19 Oct 2015 16:40:15 +0000
(19:40 +0300)
committer
Albert ARIBAUD
<albert.u.boot@aribaud.net>
Tue, 10 Nov 2015 08:45:36 +0000
(09:45 +0100)
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>
arch/arm/lib/semihosting.c
patch
|
blob
|
history
diff --git
a/arch/arm/lib/semihosting.c
b/arch/arm/lib/semihosting.c
index ed5e8e426ec9ce251bb11fcd5741faeff0de9389..e32ad909450ca23faab030698f7fea0faa95d675 100644
(file)
--- 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 %
l
u\n", __func__, fd, memp, len);
+ debug("%s: fd %ld, memp %p, len %
z
u\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 %
l
u memp %p\n",
+ printf("%s: ERROR ret %ld, fd %ld, len %
z
u memp %p\n",
__func__, ret, fd, len, memp);
return -1;
}