diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-13 21:06:21 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-13 21:06:21 +0000 |
commit | 150f402b36197d822f8a7dd835231cd67b77e959 (patch) | |
tree | ddac0e3876f058e0070dc497902994583517f879 /util-linux | |
parent | 2418288cac34272d99dc8b9f46a74163eff5ea2c (diff) | |
download | busybox-150f402b36197d822f8a7dd835231cd67b77e959.tar.gz |
whitespace fixes (leading spaces to tab)
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 |