[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20071023161535.a526d595.rdunlap@xenotime.net>
Date: Tue, 23 Oct 2007 16:15:35 -0700
From: Randy Dunlap <rdunlap@...otime.net>
To: Jeff Garzik <jeff@...zik.org>
Cc: LKML <linux-kernel@...r.kernel.org>, akpm@...ux-foundation.org,
linux-wireless@...r.kernel.org, linville@...driver.com
Subject: Re: [PATCH 10/12] mac80211: fix warning created by BIT()
On Tue, 23 Oct 2007 18:36:45 -0400 (EDT) Jeff Garzik wrote:
> Now that BIT() forces unsigned long, this warning appears:
>
> net/mac80211/ieee80211_sta.c: In function âieee80211_rx_mgmt_assoc_respâ:
> net/mac80211/ieee80211_sta.c:1187: warning: format â%dâ expects type âintâ, but argument 7 has type âlong unsigned intâ
LC_ALL=C make ...
> Signed-off-by: Jeff Garzik <jgarzik@...hat.com>
> ---
>
> diff --git a/net/mac80211/ieee80211_sta.c b/net/mac80211/ieee80211_sta.c
> index f7ffeec..bdfd901 100644
> --- a/net/mac80211/ieee80211_sta.c
> +++ b/net/mac80211/ieee80211_sta.c
> @@ -1182,7 +1182,7 @@ static void ieee80211_rx_mgmt_assoc_resp(struct net_device *dev,
> aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
>
> printk(KERN_DEBUG "%s: RX %sssocResp from %s (capab=0x%x "
> - "status=%d aid=%d)\n",
> + "status=%d aid=%ld)\n",
> dev->name, reassoc ? "Rea" : "A", print_mac(mac, mgmt->sa),
> capab_info, status_code, aid & ~(BIT(15) | BIT(14)));
>
> -
Patch was submitted yesterday by Johannes Berg, but does need to be
pushed by someone... (like this)
---
~Randy
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists