The following commit has been merged in the master branch: commit ae1cd00b0412e2d220b289be340efcca30db778c Author: Sven Eckelmann sven@narfation.org Date: Sun Dec 12 21:57:13 2010 +0000
batman-adv: Remove line over 80 characters
"Use kernel facilities for bit operations" increased accidently the character count on a line to more than 80 characters when counting a tab as 8 characters.
Signed-off-by: Sven Eckelmann sven@narfation.org
diff --git a/bitarray.c b/bitarray.c index 14606fc..5dad5e8 100644 --- a/bitarray.c +++ b/bitarray.c @@ -61,7 +61,7 @@ void bit_mark(TYPE_OF_WORD *seq_bits, int32_t n) /* which position in the selected word */ word_offset = n % WORD_BIT_SIZE;
- set_bit(word_offset, &seq_bits[word_num]); /* turn the position on */ + set_bit(word_offset, &seq_bits[word_num]); /* turn the position on */ }
/* shift the packet array by n places. */