Skip to content

Commit

Permalink
arm: fix compile warnings when semihosting is enabled on ARMv7M target.
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
pftbest authored and albert-aribaud-u-boot committed Nov 10, 2015
1 parent 432a624 commit 7bdf75c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/lib/semihosting.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
}
Expand Down

0 comments on commit 7bdf75c

Please sign in to comment.