From ea543b5c6f2f7fd9e7c54d8e33abc32049aafc6d Mon Sep 17 00:00:00 2001 From: Alasdair G Kergon Date: Sun, 24 Jul 2016 01:35:04 +0100 Subject: [PATCH] raid_manip: Fix stripe_size type to uint32_t. --- lib/metadata/raid_manip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/metadata/raid_manip.c b/lib/metadata/raid_manip.c index 247053277..ee05ae7c2 100644 --- a/lib/metadata/raid_manip.c +++ b/lib/metadata/raid_manip.c @@ -2171,7 +2171,7 @@ static struct lv_segment *_convert_striped_to_raid0(struct logical_volume *lv, int force, \ unsigned new_image_count, \ const unsigned new_stripes, \ - unsigned new_stripe_size, \ + uint32_t new_stripe_size, \ struct dm_list *allocate_pvs typedef int (*takeover_fn_t)(TAKEOVER_FN_ARGS);