Re: [PATCH] exynos: Fix bad printf format specifiers

2020-11-12 Thread Peter Maydell
On Wed, 11 Nov 2020 at 07:48, Alex Chen wrote: > > We should use printf format specifier "%u" instead of "%d" for > argument of type "unsigned int". > > Reported-by: Euler Robot > Signed-off-by: Alex Chen > --- > hw/timer/exynos4210_mct.c | 4 ++-- > hw/timer/exynos4210_pwm.c | 8 > 2

[PATCH] exynos: Fix bad printf format specifiers

2020-11-10 Thread Alex Chen
We should use printf format specifier "%u" instead of "%d" for argument of type "unsigned int". Reported-by: Euler Robot Signed-off-by: Alex Chen --- hw/timer/exynos4210_mct.c | 4 ++-- hw/timer/exynos4210_pwm.c | 8 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/hw/tim