diff options
Diffstat (limited to 'util-linux/mkfs_minix.c')
-rw-r--r-- | util-linux/mkfs_minix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mkfs_minix.c b/util-linux/mkfs_minix.c index 60031a5c3..49b1d4cca 100644 --- a/util-linux/mkfs_minix.c +++ b/util-linux/mkfs_minix.c | |||
@@ -149,7 +149,7 @@ static ALWAYS_INLINE unsigned div_roundup(unsigned size, unsigned n) | |||
149 | #else | 149 | #else |
150 | # define SB_ZONES (version2 ? SB.s_zones : SB.s_nzones) | 150 | # define SB_ZONES (version2 ? SB.s_zones : SB.s_nzones) |
151 | # define INODE_BLOCKS div_roundup(SB_INODES, \ | 151 | # define INODE_BLOCKS div_roundup(SB_INODES, \ |
152 | version2 ? MINIX2_INODES_PER_BLOCK : MINIX1_INODES_PER_BLOCK) | 152 | (version2 ? MINIX2_INODES_PER_BLOCK : MINIX1_INODES_PER_BLOCK)) |
153 | #endif | 153 | #endif |
154 | 154 | ||
155 | #define INODE_BUFFER_SIZE (INODE_BLOCKS * BLOCK_SIZE) | 155 | #define INODE_BUFFER_SIZE (INODE_BLOCKS * BLOCK_SIZE) |