Re: [PATCH u-boot-marvell v3 08/39] tools: kwboot: Fix comparison of integers with different size

2021-10-01 Thread Stefan Roese
On 24.09.21 23:06, Marek Behún wrote: From: Marek Behún The compiler complains that we are comparing int with size_t when compiled with -W. Signed-off-by: Marek Behún Reviewed-by: Stefan Roese Thanks, Stefan --- tools/kwboot.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)

[PATCH u-boot-marvell v3 08/39] tools: kwboot: Fix comparison of integers with different size

2021-09-24 Thread Marek Behún
From: Marek Behún The compiler complains that we are comparing int with size_t when compiled with -W. Signed-off-by: Marek Behún --- tools/kwboot.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/kwboot.c b/tools/kwboot.c index 88353d19c0..3d9f73e697 100644 ---