All of lore.kernel.org
 help / color / mirror / Atom feed
From: Albert ARIBAUD <albert.u.boot@aribaud.net>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 2/2] arm: fix compile warnings when semihosting is enabled on ARMv7M target.
Date: Tue, 10 Nov 2015 15:02:36 +0100	[thread overview]
Message-ID: <20151110150236.55840db8@lilith> (raw)
In-Reply-To: <1445272815-7243-2-git-send-email-pftbest@gmail.com>

Hello Vadzim,

On Mon, 19 Oct 2015 19:40:15 +0300, Vadzim Dambrouski <pftbest@gmail.com> wrote:
> 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 | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm/lib/semihosting.c b/arch/arm/lib/semihosting.c
> index ed5e8e4..e32ad90 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;
>  	}
> -- 
> 2.6.1
> 

Applied to u-boot-arm/master, thanks!

Amicalement,
-- 
Albert.

  reply	other threads:[~2015-11-10 14:02 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-19 16:40 [U-Boot] [PATCH v3 1/2] arm: add support for semihosting for ARMv7M targets Vadzim Dambrouski
2015-10-19 16:40 ` [U-Boot] [PATCH v3 2/2] arm: fix compile warnings when semihosting is enabled on ARMv7M target Vadzim Dambrouski
2015-11-10 14:02   ` Albert ARIBAUD [this message]
2015-10-22 10:42 ` [U-Boot] [PATCH v3 1/2] arm: add support for semihosting for ARMv7M targets Albert ARIBAUD
2015-11-10 14:02 ` Albert ARIBAUD

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20151110150236.55840db8@lilith \
    --to=albert.u.boot@aribaud.net \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.