[git commit master] mkfs_ext2: fix compile error

Denys Vlasenko vda.linux at googlemail.com
Sat Oct 24 15:20:29 UTC 2009


commit: http://git.busybox.net/busybox/commit/?id=4b8b37f9815892a1c221c0ca9f8eec623ab71866
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 util-linux/mkfs_ext2.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/util-linux/mkfs_ext2.c b/util-linux/mkfs_ext2.c
index d89f946..8b435c1 100644
--- a/util-linux/mkfs_ext2.c
+++ b/util-linux/mkfs_ext2.c
@@ -414,7 +414,7 @@ int mkfs_ext2_main(int argc UNUSED_PARAM, char **argv)
 		, inodes_per_group * ngroups, nblocks
 		, nreserved, reserved_percent
 		, first_block
-		, group_desc_blocks * (blocksize / sizeof(*gd)) * blocks_per_group
+		, group_desc_blocks * (blocksize / (unsigned)sizeof(*gd)) * blocks_per_group
 		, ngroups
 		, blocks_per_group, blocks_per_group
 		, inodes_per_group
-- 
1.6.3.3



More information about the busybox-cvs mailing list