From patchwork Fri Feb 4 13:57:13 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Linus_L=C3=BCssing?= X-Patchwork-Id: 809 Return-Path: Received: from rubicon.hasler.ascom.ch (rubicon.hasler.ascom.ch [139.79.129.1]) by open-mesh.org (Postfix) with ESMTPS id EA228154216 for ; Fri, 4 Feb 2011 14:57:16 +0100 (CET) Received: from eiger.ma.tech.ascom.ch (eiger.ma.tech.ascom.ch [139.79.100.1]) by rubicon.hasler.ascom.ch (8.14.4/8.14.4) with ESMTP id p14DvGwN019538; Fri, 4 Feb 2011 14:57:16 +0100 (MET) Received: from [139.79.100.249] (helo=localhost) by eiger.ma.tech.ascom.ch with esmtp (Exim 3.16 #1) id 1PlM9y-0004bP-00; Fri, 04 Feb 2011 14:57:14 +0100 From: =?UTF-8?q?Linus=20L=C3=BCssing?= To: b.a.t.m.a.n@lists.open-mesh.org Date: Fri, 4 Feb 2011 14:57:13 +0100 Message-Id: <1296827833-27595-2-git-send-email-linus.luessing@ascom.ch> X-Mailer: git-send-email 1.7.2.3 In-Reply-To: <1296827833-27595-1-git-send-email-linus.luessing@ascom.ch> References: <1296827833-27595-1-git-send-email-linus.luessing@ascom.ch> MIME-Version: 1.0 Cc: =?UTF-8?q?Linus=20L=C3=BCssing?= , =?UTF-8?q?Linus=20L=C3=BCssing?= Subject: [B.A.T.M.A.N.] [PATCH 2/2] batman-adv: Switch order of types.h and compat.h inclusion 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: Fri, 04 Feb 2011 13:57:17 -0000 The compat.h changes should be transparent for any other of our source files - even for types.h. Therefore switching the order. Signed-off-by: Linus Lüssing --- main.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/batman-adv/main.h b/batman-adv/main.h index 1ec9986..bd8470d 100644 --- a/batman-adv/main.h +++ b/batman-adv/main.h @@ -114,10 +114,10 @@ #include /* struct sock */ #include #include -#include "types.h" - #include "compat.h" +#include "types.h" + #ifndef REVISION_VERSION #define REVISION_VERSION_STR "" #else