Re: [PATCH] mac80211: fix "format '%d' expects type 'int', but argument 7 has type 'long unsigned int'" warning

2007-10-24 Thread John W. Linville
Third submission of a patch like this since day before yesterday...I promise, I have it. Please send wireless patches to [EMAIL PROTECTED], and CC me. BTW, this patch appears to be linewrap-damaged... Thanks, John On Wed, Oct 24, 2007 at 04:37:08PM +0200, Miguel Botón wrote: > printf()

[PATCH] mac80211: fix "format '%d' expects type 'int', but argument 7 has type 'long unsigned int'" warning

2007-10-24 Thread Miguel Botón
printf() expects an "integer" value but we give it a "long unsigned integer". diff -ruN linux-2.6.24-rc1.orig/net/mac80211/ieee80211_sta.c linux-2.6.24-rc1/net/mac80211/ieee80211_sta.c --- linux-2.6.24-rc1.orig/net/mac80211/ieee80211_sta.c 2007-10-24 16:06:49.0 +0200 +++

[PATCH] mac80211: fix format '%d' expects type 'int', but argument 7 has type 'long unsigned int' warning

2007-10-24 Thread Miguel Botón
printf() expects an integer value but we give it a long unsigned integer. diff -ruN linux-2.6.24-rc1.orig/net/mac80211/ieee80211_sta.c linux-2.6.24-rc1/net/mac80211/ieee80211_sta.c --- linux-2.6.24-rc1.orig/net/mac80211/ieee80211_sta.c 2007-10-24 16:06:49.0 +0200 +++

Re: [PATCH] mac80211: fix format '%d' expects type 'int', but argument 7 has type 'long unsigned int' warning

2007-10-24 Thread John W. Linville
Third submission of a patch like this since day before yesterday...I promise, I have it. Please send wireless patches to [EMAIL PROTECTED], and CC me. BTW, this patch appears to be linewrap-damaged... Thanks, John On Wed, Oct 24, 2007 at 04:37:08PM +0200, Miguel Botón wrote: printf()