Skip to content

Commit

Permalink
Staging: rtl8187se: fix printk format warnings
Browse files Browse the repository at this point in the history
Fix staging/rtl8187se printk format warnings:

drivers/staging/rtl8187se/ieee80211/ieee80211_wx.c:845: warning: format '%d' expects type 'int', but argument 2 has type 'size_t'
drivers/staging/rtl8187se/ieee80211/ieee80211_wx.c:852: warning: format '%d' expects type 'int', but argument 2 has type 'size_t'

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Randy Dunlap authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent bdd345d commit 4913aff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/rtl8187se/ieee80211/ieee80211_wx.c
Original file line number Diff line number Diff line change
Expand Up @@ -842,14 +842,14 @@ int ieee80211_wx_set_gen_ie(struct ieee80211_device *ieee, u8 *ie, size_t len)

if (len>MAX_WPA_IE_LEN || (len && ie == NULL))
{
printk("return error out, len:%d\n", len);
printk("return error out, len:%zu\n", len);
return -EINVAL;
}

if (len)
{
if (len != ie[1]+2){
printk("len:%d, ie:%d\n", len, ie[1]);
printk("len:%zu, ie:%d\n", len, ie[1]);
return -EINVAL;
}
buf = kmalloc(len, GFP_KERNEL);
Expand Down

0 comments on commit 4913aff

Please sign in to comment.