From e76eeca21de23ae884e415a12809ac683960cbca Mon Sep 17 00:00:00 2001 From: Dongsheng Yang Date: Mon, 29 Jun 2015 16:49:19 +0800 Subject: mtd-utils: ubi-tests: fix a some overflows Signed-off-by: Dongsheng Yang Reviewed-by: Richard Weinberger Signed-off-by: Brian Norris --- tests/ubi-tests/rsvol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/ubi-tests/rsvol.c') diff --git a/tests/ubi-tests/rsvol.c b/tests/ubi-tests/rsvol.c index 60badb0..732bcaa 100644 --- a/tests/ubi-tests/rsvol.c +++ b/tests/ubi-tests/rsvol.c @@ -169,7 +169,7 @@ static int test_rsvol1(struct ubi_vol_info *vol_info) } if (ubi_rsvol(libubi, node, vol_info->vol_id, - vol_info->leb_size * dev_info.avail_lebs)) { + (long long)vol_info->leb_size * dev_info.avail_lebs)) { failed("ubi_rsvol"); return -1; } -- cgit v1.2.3