diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2008-09-28 19:07:37 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2008-09-28 19:07:37 +0000 |
commit | dcca20be510617f9c4a3228f57e06a3783c3b6de (patch) | |
tree | fcbddc42365a5b2337e9ad6f2b7ed8e25197fa93 /target/linux | |
parent | ec6c0fdc5eb42a87d2bb137aca757ff6de983899 (diff) | |
download | upstream-dcca20be510617f9c4a3228f57e06a3783c3b6de.tar.gz upstream-dcca20be510617f9c4a3228f57e06a3783c3b6de.tar.bz2 upstream-dcca20be510617f9c4a3228f57e06a3783c3b6de.zip |
2.6.25/2.6.26: fix compiler warning in imq.c
SVN-Revision: 12770
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.25/150-netfilter_imq.patch | 2 | ||||
-rw-r--r-- | target/linux/generic-2.6/patches-2.6.26/150-netfilter_imq.patch | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.25/150-netfilter_imq.patch b/target/linux/generic-2.6/patches-2.6.25/150-netfilter_imq.patch index fdf749d432..3e2423ffe9 100644 --- a/target/linux/generic-2.6/patches-2.6.25/150-netfilter_imq.patch +++ b/target/linux/generic-2.6/patches-2.6.25/150-netfilter_imq.patch @@ -79,7 +79,7 @@ + +struct imq_private { + struct tasklet_struct tasklet; -+ int tasklet_pending; ++ unsigned long tasklet_pending; +}; + +static nf_hookfn imq_nf_hook; diff --git a/target/linux/generic-2.6/patches-2.6.26/150-netfilter_imq.patch b/target/linux/generic-2.6/patches-2.6.26/150-netfilter_imq.patch index ba9a93c135..d43baf01db 100644 --- a/target/linux/generic-2.6/patches-2.6.26/150-netfilter_imq.patch +++ b/target/linux/generic-2.6/patches-2.6.26/150-netfilter_imq.patch @@ -79,7 +79,7 @@ + +struct imq_private { + struct tasklet_struct tasklet; -+ int tasklet_pending; ++ unsigned long tasklet_pending; +}; + +static nf_hookfn imq_nf_hook; |