diff options
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/fsck_minix.c | 2 |
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]; /* gcc likes this more (code is smaller) than macro variant */ static ATTRIBUTE_ALWAYS_INLINE unsigned div_roundup(unsigned size, unsigned n) { - return (size + n-1) / n; + return (size + n-1) / n; } #if ENABLE_FEATURE_MINIX2 |