"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 --- batman-adv/bitarray.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/batman-adv/bitarray.c b/batman-adv/bitarray.c index 14606fc..5dad5e8 100644 --- a/batman-adv/bitarray.c +++ b/batman-adv/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. */