diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-06-29 14:28:27 +0200 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2009-06-29 14:28:27 +0200 |
commit | 8a3af79361e85db6fec4173ef1916322471c19e3 (patch) | |
tree | 839d4c56ba82bdbb7719d8e8fe85648faec4bab5 /include | |
parent | a3a9f79e361e864f0e9d75ebe2a0cb43d17c4272 (diff) |
netfilter: headers_check fix: linux/netfilter/xt_osf.h
fix the following 'make headers_check' warnings:
usr/include/linux/netfilter/xt_osf.h:40: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/netfilter/xt_osf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/netfilter/xt_osf.h b/include/linux/netfilter/xt_osf.h index fd2272e0959a..18afa495f973 100644 --- a/include/linux/netfilter/xt_osf.h +++ b/include/linux/netfilter/xt_osf.h @@ -20,6 +20,8 @@ #ifndef _XT_OSF_H #define _XT_OSF_H +#include <linux/types.h> + #define MAXGENRELEN 32 #define XT_OSF_GENRE (1<<0) |