staging: wlan-ng: Replace long int with long
Replace long int with long as int is unnecessary according to the checkpatch.pl warning. K&R write, 'The word int can be omitted... and typically is.' Signed-off-by: Maya Nakamura <m.maya.nakamura@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
dd71c89b2c
commit
2bc51572aa
|
@ -430,7 +430,7 @@ int skb_p80211_to_ether(struct wlandevice *wlandev, u32 ethconv,
|
|||
/* A bogus length ethfrm has been sent. */
|
||||
/* Is someone trying an oflow attack? */
|
||||
netdev_err(netdev, "DIXII frame too large (%ld > %d)\n",
|
||||
(long int)(payload_length -
|
||||
(long)(payload_length -
|
||||
sizeof(struct wlan_llc) -
|
||||
sizeof(struct wlan_snap)), netdev->mtu);
|
||||
return 1;
|
||||
|
|
Loading…
Reference in New Issue