From patchwork Mon Apr 2 17:25:52 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Antonio Quartulli X-Patchwork-Id: 1682 Return-Path: Received: from latitanza.investici.org (latitanza.investici.org [82.94.249.234]) by open-mesh.org (Postfix) with ESMTPS id C55606006A7 for ; Mon, 2 Apr 2012 19:25:02 +0200 (CEST) Authentication-Results: open-mesh.org; dkim=pass (1024-bit key) header.i=@autistici.org; dkim-adsp=pass Received: from [82.94.249.234] (latitanza [82.94.249.234]) (Authenticated sender: ordex@autistici.org) by localhost (Postfix) with ESMTPSA id E896398377; Mon, 2 Apr 2012 17:25:01 +0000 (UTC) X-DKIM: Sendmail DKIM Filter v2.8.2 latitanza.investici.org E896398377 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1333387502; bh=fNpEvluhT1ltKBYixNIpzrLmsyYsEZvEcs3fPZNWPvo=; h=From:To:Cc:Subject:Date:Message-Id; b=W3Ok52Nga5jZ1tDAFher+POPSbA0etiIGy9ofWKCOjNDM77+xX+UoQFKaAg+2ZAnS lJYKoJYdNFYXV7dBFg26SnhaR5CaqyUNBrp+MHHABQNUfH3wNWaP9U/0IF0WFuZxVM b/smkuh3jMH0ST20WNl3CZFRJlWqcE6XQaNMDPgM= From: Antonio Quartulli To: b.a.t.m.a.n@lists.open-mesh.org Date: Mon, 2 Apr 2012 19:25:52 +0200 Message-Id: <1333387552-18723-1-git-send-email-ordex@autistici.org> X-Mailer: git-send-email 1.7.9.4 Subject: [B.A.T.M.A.N.] [PATCH] batman-adv: put long strings on a dedicated line X-BeenThere: b.a.t.m.a.n@lists.open-mesh.org X-Mailman-Version: 2.1.13 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: Mon, 02 Apr 2012 17:25:03 -0000 Strings that make the line exceed 80 chars should be put on a dedicated line to avoid making it even longer Signed-off-by: Antonio Quartulli --- bridge_loop_avoidance.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bridge_loop_avoidance.c b/bridge_loop_avoidance.c index 8a17a78..aaa4b9f 100644 --- a/bridge_loop_avoidance.c +++ b/bridge_loop_avoidance.c @@ -697,7 +697,8 @@ static int handle_unclaim(struct bat_priv *bat_priv, return 1; /* this must be an UNCLAIM frame */ - bat_dbg(DBG_BLA, bat_priv, "handle_unclaim(): UNCLAIM %pM on vid %d (sent by %pM)...\n", + bat_dbg(DBG_BLA, bat_priv, + "handle_unclaim(): UNCLAIM %pM on vid %d (sent by %pM)...\n", claim_addr, vid, backbone_gw->orig); bla_del_claim(bat_priv, claim_addr, vid);