diff options
Diffstat (limited to 'util-linux/fsck_minix.c')
-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 d35a25a9d..955d66f23 100644 --- a/util-linux/fsck_minix.c +++ b/util-linux/fsck_minix.c | |||
@@ -159,7 +159,7 @@ static struct { | |||
159 | #define MAGIC (Super.s_magic) | 159 | #define MAGIC (Super.s_magic) |
160 | 160 | ||
161 | /* gcc likes this more (code is smaller) than macro variant */ | 161 | /* gcc likes this more (code is smaller) than macro variant */ |
162 | static ATTRIBUTE_ALWAYS_INLINE unsigned div_roundup(unsigned size, unsigned n) | 162 | static ALWAYS_INLINE unsigned div_roundup(unsigned size, unsigned n) |
163 | { | 163 | { |
164 | return (size + n-1) / n; | 164 | return (size + n-1) / n; |
165 | } | 165 | } |