aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-13 21:06:21 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-13 21:06:21 +0000
commita8ce712c3cd70a63253f93a240bfe1650e7d6865 (patch)
treeddac0e3876f058e0070dc497902994583517f879 /util-linux
parent17404d32f8a380def4fe8db90300572582d35b5d (diff)
downloadbusybox-w32-a8ce712c3cd70a63253f93a240bfe1650e7d6865.tar.gz
busybox-w32-a8ce712c3cd70a63253f93a240bfe1650e7d6865.tar.bz2
busybox-w32-a8ce712c3cd70a63253f93a240bfe1650e7d6865.zip
whitespace fixes (leading spaces to tab)
git-svn-id: svn://busybox.net/trunk/busybox@17265 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'util-linux')
-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