Re: [PATCH] hw/arm: Fix bad print format specifiers

2020-11-20 Thread Peter Maydell
On Mon, 2 Nov 2020 at 09:56, AlexChen wrote: > > We should use printf format specifier "%u" instead of "%i" for > argument of type "unsigned int". > > Reported-by: Euler Robot > Signed-off-by: Alex Chen > --- > hw/arm/pxa2xx.c | 2 +- > hw/arm/spitz.c | 2 +- > hw/arm/tosa.c | 2 +- > 3 file

Re: [PATCH] hw/arm: Fix bad print format specifiers

2020-11-18 Thread Alex Chen
Kindly ping. On 2020/11/2 17:55, AlexChen wrote: > We should use printf format specifier "%u" instead of "%i" for > argument of type "unsigned int". > > Reported-by: Euler Robot > Signed-off-by: Alex Chen > --- > hw/arm/pxa2xx.c | 2 +- > hw/arm/spitz.c | 2 +- > hw/arm/tosa.c | 2 +- > 3 f

[PATCH] hw/arm: Fix bad print format specifiers

2020-11-02 Thread AlexChen
We should use printf format specifier "%u" instead of "%i" for argument of type "unsigned int". Reported-by: Euler Robot Signed-off-by: Alex Chen --- hw/arm/pxa2xx.c | 2 +- hw/arm/spitz.c | 2 +- hw/arm/tosa.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/arm/pxa