From: juhosg Date: Sun, 28 Sep 2008 19:07:37 +0000 (+0000) Subject: [kernel] 2.6.25/2.6.26: fix compiler warning in imq.c X-Git-Tag: fast2504n-3.10.28-merged~17679 X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=98eb073946e453d7386181b0a0b4435f9aaafd73;p=openwrt.git [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 --- 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;