aboutsummaryrefslogtreecommitdiff
path: root/util-linux/fsck_minix.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/fsck_minix.c')
-rw-r--r--util-linux/fsck_minix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/fsck_minix.c b/util-linux/fsck_minix.c
index e2341ced1..4e9365116 100644
--- a/util-linux/fsck_minix.c
+++ b/util-linux/fsck_minix.c
@@ -155,7 +155,7 @@ static char super_block_buffer[BLOCK_SIZE];
155/* gcc likes this more (code is smaller) than macro variant */ 155/* gcc likes this more (code is smaller) than macro variant */
156static ATTRIBUTE_ALWAYS_INLINE unsigned div_roundup(unsigned size, unsigned n) 156static ATTRIBUTE_ALWAYS_INLINE unsigned div_roundup(unsigned size, unsigned n)
157{ 157{
158 return (size + n-1) / n; 158 return (size + n-1) / n;
159} 159}
160 160
161#if ENABLE_FEATURE_MINIX2 161#if ENABLE_FEATURE_MINIX2