dect
/
linux-2.6
Archived
13
0
Fork 0

Staging: fix wlan-ng printk format warning

Fix prism2fw.c printk format warning:

drivers/staging/wlan-ng/prism2fw.c:209: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Randy Dunlap 2010-02-25 09:55:03 -08:00 committed by Greg Kroah-Hartman
parent 128a5d0223
commit 83a0f9bc65
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ int prism2_fwtry(struct usb_device *udev, wlandevice_t *wlandev)
return 1;
}
printk(KERN_INFO "prism2_usb: %s will be processed, size %d\n",
printk(KERN_INFO "prism2_usb: %s will be processed, size %zu\n",
PRISM2_USB_FWFILE, fw_entry->size);
prism2_fwapply((const struct ihex_binrec *)fw_entry->data, wlandev);