From dcca20be510617f9c4a3228f57e06a3783c3b6de Mon Sep 17 00:00:00 2001 From: Gabor Juhos Date: Sun, 28 Sep 2008 19:07:37 +0000 Subject: [PATCH] 2.6.25/2.6.26: fix compiler warning in imq.c SVN-Revision: 12770 --- target/linux/generic-2.6/patches-2.6.25/150-netfilter_imq.patch | 2 +- 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; -- 2.25.1