whitespace fixes (leading spaces to tab)

This commit is contained in:
Denis Vlasenko
2007-01-13 21:06:21 +00:00
parent 2418288cac
commit 150f402b36
11 changed files with 13 additions and 13 deletions

View File

@ -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