diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-24 17:20:29 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-24 17:20:29 +0200 |
commit | 4b8b37f9815892a1c221c0ca9f8eec623ab71866 (patch) | |
tree | 4ae447e63a4f958fc6712409fd7fcda3109cd43e /util-linux/mkfs_ext2.c | |
parent | 17c838bc6da9ff7defb2a8d5ff539ec743acc1fc (diff) | |
download | busybox-w32-4b8b37f9815892a1c221c0ca9f8eec623ab71866.tar.gz busybox-w32-4b8b37f9815892a1c221c0ca9f8eec623ab71866.tar.bz2 busybox-w32-4b8b37f9815892a1c221c0ca9f8eec623ab71866.zip |
mkfs_ext2: fix compile error
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/mkfs_ext2.c')
-rw-r--r-- | 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 d89f9460e..8b435c120 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) | |||
414 | , inodes_per_group * ngroups, nblocks | 414 | , inodes_per_group * ngroups, nblocks |
415 | , nreserved, reserved_percent | 415 | , nreserved, reserved_percent |
416 | , first_block | 416 | , first_block |
417 | , group_desc_blocks * (blocksize / sizeof(*gd)) * blocks_per_group | 417 | , group_desc_blocks * (blocksize / (unsigned)sizeof(*gd)) * blocks_per_group |
418 | , ngroups | 418 | , ngroups |
419 | , blocks_per_group, blocks_per_group | 419 | , blocks_per_group, blocks_per_group |
420 | , inodes_per_group | 420 | , inodes_per_group |