22 lines
756 B
Diff
22 lines
756 B
Diff
commit 995511f26e8d661d32d1c3fc42a08960989d1e6d
|
|
Author: Doug Ledford <dledford@redhat.com>
|
|
Date: Tue Apr 6 14:04:30 2010 -0400
|
|
|
|
powerpc compile fix
|
|
|
|
Signed-off-by: Doug Ledford <dledford@redhat.com>
|
|
|
|
diff --git a/super-intel.c b/super-intel.c
|
|
index a196ca3..999b970 100644
|
|
--- a/super-intel.c
|
|
+++ b/super-intel.c
|
|
@@ -697,7 +697,7 @@ static void print_imsm_dev(struct imsm_dev *dev, char *uuid, int disk_idx)
|
|
printf(" <-- %s", map_state_str[map->map_state]);
|
|
printf("\n Checkpoint : %u (%llu)",
|
|
__le32_to_cpu(dev->vol.curr_migr_unit),
|
|
- blocks_per_migr_unit(dev));
|
|
+ (unsigned long long)blocks_per_migr_unit(dev));
|
|
}
|
|
printf("\n");
|
|
printf(" Dirty State : %s\n", dev->vol.dirty ? "dirty" : "clean");
|