From patchwork Sun Dec 12 20:46:58 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sven Eckelmann X-Patchwork-Id: 638 Return-Path: Received: from v3-1039.vlinux.de (narfation.org [79.140.41.39]) by open-mesh.org (Postfix) with ESMTPS id 23E731545D3 for ; Sun, 12 Dec 2010 21:47:03 +0100 (CET) Received: from sven-desktop.lazhur.ath.cx (unknown [88.130.164.197]) by v3-1039.vlinux.de (Postfix) with ESMTPSA id 9CA1894011; Sun, 12 Dec 2010 21:47:12 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=narfation.org; s=mail; t=1292186832; bh=UJ3fnh4EGz8RswS198emBzToVB1y9quM/XJyudVPjLY=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References; b=QxQGMFjSkNZRM2uwH/PEIOv04xEnCmgTMNGBQnaOR2i0dVeleY9oHOodTPOCX6GZn 9CDwRxuF3mdgcjEeuoeVua55pptjUV1Fu+i/VgHEIVxb5tu6r6At+TUf5eI/vib0qe kc3UWaqE4ueQTZ2ARJJKliWA3bBx2o7yBpCIbu+I= From: Sven Eckelmann To: b.a.t.m.a.n@lists.open-mesh.org Date: Sun, 12 Dec 2010 21:46:58 +0100 Message-Id: <1292186819-26232-1-git-send-email-sven@narfation.org> X-Mailer: git-send-email 1.7.2.3 In-Reply-To: <201012122143.10618.sven@narfation.org> References: <201012122143.10618.sven@narfation.org> Subject: [B.A.T.M.A.N.] [PATCHv3 1/2] batman-adv: Remove line over 80 characters X-BeenThere: b.a.t.m.a.n@lists.open-mesh.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: The list for a Better Approach To Mobile Ad-hoc Networking List-Id: The list for a Better Approach To Mobile Ad-hoc Networking List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Dec 2010 20:47:03 -0000 "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 --- 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. */