networking/interface.c: better readability (by Walter Harms)

mkfs_minix: whitespace fix
This commit is contained in:
Denis Vlasenko
2008-11-22 18:58:11 +00:00
parent ae6e135ae8
commit 12ff9dc714
2 changed files with 88 additions and 78 deletions

View File

@ -160,7 +160,7 @@ static ALWAYS_INLINE unsigned div_roundup(unsigned size, unsigned n)
static int minix_bit(const char* a, unsigned i)
{
return a[i >> 3] & (1<<(i & 7));
return a[i >> 3] & (1<<(i & 7));
}
static void minix_setbit(char *a, unsigned i)