Re: [PATCH] iwlwifi: fix compilation warning in 'iwl-4965.c'

2008-01-04 Thread Miguel Botón
Ok, there's a new patch. This patch fixes a compilation warning in 'iwl-4965.c'. "warning: format ‘%d’ expects type ‘int’, but argument 3 has type ‘long unsigned int’" Signed-off-by: Miguel Botón <[EMAIL PROTECTED] diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c b/drivers/net/wireless/iw

Re: [PATCH] iwlwifi: fix compilation warning in 'iwl-4965.c'

2008-01-04 Thread David Miller
From: Roland Dreier <[EMAIL PROTECTED]> Date: Fri, 04 Jan 2008 14:13:12 -0800 > > - "radiotap head [%d]\n", > > + "radiotap head [%ld]\n", > > skb_headroom(skb), sizeof(*iwl4965_rt)); > > Actually I think the correct pri

Re: [PATCH] iwlwifi: fix compilation warning in 'iwl-4965.c'

2008-01-04 Thread Randy Dunlap
On Fri, 4 Jan 2008 23:05:54 +0100 Miguel Botón wrote: > This patch fixes a compilation warning in 'iwl-4965.c'. It would be helpful to have the warning message right here.<--- > Signed-off-by: Miguel Botón <[EMAIL PROTECTED]> > > diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c > b/drivers

Re: [PATCH] iwlwifi: fix compilation warning in 'iwl-4965.c'

2008-01-04 Thread Michael Buesch
On Friday 04 January 2008 23:05:54 Miguel Botón wrote: > This patch fixes a compilation warning in 'iwl-4965.c'. > > Signed-off-by: Miguel Botón <[EMAIL PROTECTED]> > > diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c > b/drivers/net/wireless/iwlwifi/iwl-4965.c > index 74999af..92237cd 10064

Re: [PATCH] iwlwifi: fix compilation warning in 'iwl-4965.c'

2008-01-04 Thread Roland Dreier
> - "radiotap head [%d]\n", > + "radiotap head [%ld]\n", > skb_headroom(skb), sizeof(*iwl4965_rt)); Actually I think the correct printf format for printing a size_t (coming here from sizeof foo) is "%zd". Otherwise

[PATCH] iwlwifi: fix compilation warning in 'iwl-4965.c'

2008-01-04 Thread Miguel Botón
This patch fixes a compilation warning in 'iwl-4965.c'. Signed-off-by: Miguel Botón <[EMAIL PROTECTED]> diff --git a/drivers/net/wireless/iwlwifi/iwl-4965.c b/drivers/net/wireless/iwlwifi/iwl-4965.c index 74999af..92237cd 100644 --- a/drivers/net/wireless/iwlwifi/iwl-4965.c +++ b/drivers/net/wir