summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/net/if.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libnetworking/net/if.c')
-rw-r--r--cpukit/libnetworking/net/if.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libnetworking/net/if.c b/cpukit/libnetworking/net/if.c
index b7a7c1ee21..3b9921311d 100644
--- a/cpukit/libnetworking/net/if.c
+++ b/cpukit/libnetworking/net/if.c
@@ -559,7 +559,7 @@ ifioctl(struct socket *so, u_long cmd, caddr_t data, struct proc *p)
* 72 was chosen below because it is the size of a TCP/IP
* header (40) + the minimum mss (32).
*/
- if (ifr->ifr_mtu < 72 || ifr->ifr_mtu > 65535)
+ if (ifr->ifr_mtu < 72 || ifr->ifr_mtu > 65535L)
return (EINVAL);
error = (*ifp->if_ioctl)(ifp, cmd, data);
if (error == 0)