From 9a40807d00bd85e73c11fad42b60563badc62579 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Thu, 4 Nov 2010 00:14:37 +0100 Subject: [PATCH] xt_mp2t: avoid compating linux headers '#include "compat_xtables.h"' should really come as the very last header inclusion in a source file. --- extensions/xt_mp2t.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extensions/xt_mp2t.c b/extensions/xt_mp2t.c index 35ddd48..81ec38e 100644 --- a/extensions/xt_mp2t.c +++ b/extensions/xt_mp2t.c @@ -22,9 +22,6 @@ #include -#include "xt_mp2t.h" -#include "compat_xtables.h" - #include /* msg levels */ /* Proc file related */ @@ -34,6 +31,9 @@ /* Timestamp related */ #include +#include "xt_mp2t.h" +#include "compat_xtables.h" + MODULE_AUTHOR("Jesper Dangaard Brouer "); MODULE_DESCRIPTION("Detecting packet drops in MPEG2 Transport Streams (TS)"); MODULE_LICENSE("GPL");