From patchwork Wed May 18 14:47:23 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Antonio Quartulli X-Patchwork-Id: 1065 Return-Path: Received: from contumacia.investici.org (contumacia.investici.org [178.255.144.35]) by open-mesh.org (Postfix) with ESMTPS id 49059154365 for ; Wed, 18 May 2011 16:47:28 +0200 (CEST) Authentication-Results: open-mesh.org; dkim=pass (1024-bit key) header.i=@autistici.org; dkim-adsp=pass Received: from [178.255.144.35] (contumacia [178.255.144.35]) (Authenticated sender: ordex@autistici.org) by localhost (Postfix) with ESMTPSA id 30A7DE8209; Wed, 18 May 2011 14:47:24 +0000 (UTC) X-DKIM: Sendmail DKIM Filter v2.8.2 contumacia.investici.org 30A7DE8209 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=autistici.org; s=stigmate; t=1305730045; bh=+UrBmG1P1twJVWg43Gtn03u5MxRSIl9ZrgaAcgRgHMM=; h=From:To:Cc:Subject:Date:Message-Id; b=AlNd0tlnEJLiFTc3lokWGXu3UlKH15BJsrgaery/jFd5jKKGLYSN76HuZ72m8rzTG FcBHkFDh4+oPKsnKLtFY4e5BxwRZASup6ZDcNaYPYG85F75RSlSg1O/YX9aCw/hEdT L/iigVtCg/AgOmjCXbvQ/gT7oq8Pad6pSyzfjafA= From: Antonio Quartulli To: "B.A.T.M.A.N" Date: Wed, 18 May 2011 16:47:23 +0200 Message-Id: <1305730043-3666-1-git-send-email-ordex@autistici.org> X-Mailer: git-send-email 1.7.3.4 Subject: [B.A.T.M.A.N.] [PATCH] batman-adv: a multiline comment should precede the variable it is describing 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: Wed, 18 May 2011 14:47:28 -0000 This comment has been wrongly put after the variable it refers to and was also bad indented Signed-off-by: Antonio Quartulli Acked-by: Sven Eckelmann --- types.h | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/types.h b/types.h index fab70e8..65b3222 100644 --- a/types.h +++ b/types.h @@ -246,10 +246,10 @@ struct frag_packet_list_entry { }; struct vis_info { - unsigned long first_seen; - struct list_head recv_list; - /* list of server-neighbors we received a vis-packet - * from. we should not reply to them. */ + unsigned long first_seen; + /* list of server-neighbors we received a vis-packet + * from. we should not reply to them. */ + struct list_head recv_list; struct list_head send_list; struct kref refcount; struct hlist_node hash_entry;