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 | 55b2a182ed437f1d4a08b43081c710f507b41a95 (patch) | |
tree | f343750186d848094e0963e8f5387a7cb1b6e214 /target/linux | |
parent | a36e7924a2dc7f673779e156bc87f1a95b5ee727 (diff) | |
download | upstream-55b2a182ed437f1d4a08b43081c710f507b41a95.tar.gz upstream-55b2a182ed437f1d4a08b43081c710f507b41a95.tar.bz2 upstream-55b2a182ed437f1d4a08b43081c710f507b41a95.zip |
[kernel] 2.6.25/2.6.26: fix compiler warning in imq.c
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12770 3c298f89-4303-0410-b956-a3cf2f4a3e73
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; |