[PATCH] xfuncs: fix format specifier in pr_emerg call
Sascha Hauer
s.hauer at pengutronix.de
Wed May 17 06:53:15 PDT 2017
On Wed, May 17, 2017 at 01:02:24PM +0100, Ian Abbott wrote:
> `enomem_panic()` calls `pr_emerg()` using `%d` in the format specifier
> string to print a value of type `size_t`. Change it to `%zu`.
>
> Signed-off-by: Ian Abbott <abbotti at mev.co.uk>
> ---
> lib/xfuncs.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Applied, thanks
Sascha
>
> diff --git a/lib/xfuncs.c b/lib/xfuncs.c
> index 1bcaa5e10..1942c1e7f 100644
> --- a/lib/xfuncs.c
> +++ b/lib/xfuncs.c
> @@ -29,7 +29,7 @@ static void __noreturn enomem_panic(size_t size)
> {
> pr_emerg("out of memory\n");
> if (size)
> - pr_emerg("Unable to allocate %d bytes\n", size);
> + pr_emerg("Unable to allocate %zu bytes\n", size);
>
> malloc_stats();
>
> --
> 2.11.0
>
>
> _______________________________________________
> barebox mailing list
> barebox at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
More information about the barebox
mailing list