diff options
| author | Eric Dumazet <eric.dumazet@gmail.com> | 2012-04-15 05:58:06 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2012-04-15 12:44:40 -0400 | 
| commit | 95c961747284a6b83a5e2d81240e214b0fa3464d (patch) | |
| tree | c7be86a00db3605a48a03109fafcbe31039ca2e0 /net/tipc/socket.c | |
| parent | 5e73ea1a31c3612aa6dfe44f864ca5b7b6a4cff9 (diff) | |
| download | olio-linux-3.10-95c961747284a6b83a5e2d81240e214b0fa3464d.tar.xz olio-linux-3.10-95c961747284a6b83a5e2d81240e214b0fa3464d.zip  | |
net: cleanup unsigned to unsigned int
Use of "unsigned int" is preferred to bare "unsigned" in net tree.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/socket.c')
| -rw-r--r-- | net/tipc/socket.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/net/tipc/socket.c b/net/tipc/socket.c index 29e957f6445..bcb3314ef16 100644 --- a/net/tipc/socket.c +++ b/net/tipc/socket.c @@ -535,7 +535,7 @@ static int send_msg(struct kiocb *iocb, struct socket *sock,  		     (dest->family != AF_TIPC)))  		return -EINVAL;  	if ((total_len > TIPC_MAX_USER_MSG_SIZE) || -	    (m->msg_iovlen > (unsigned)INT_MAX)) +	    (m->msg_iovlen > (unsigned int)INT_MAX))  		return -EMSGSIZE;  	if (iocb) @@ -647,7 +647,7 @@ static int send_packet(struct kiocb *iocb, struct socket *sock,  		return send_msg(iocb, sock, m, total_len);  	if ((total_len > TIPC_MAX_USER_MSG_SIZE) || -	    (m->msg_iovlen > (unsigned)INT_MAX)) +	    (m->msg_iovlen > (unsigned int)INT_MAX))  		return -EMSGSIZE;  	if (iocb) @@ -734,8 +734,8 @@ static int send_stream(struct kiocb *iocb, struct socket *sock,  		goto exit;  	} -	if ((total_len > (unsigned)INT_MAX) || -	    (m->msg_iovlen > (unsigned)INT_MAX)) { +	if ((total_len > (unsigned int)INT_MAX) || +	    (m->msg_iovlen > (unsigned int)INT_MAX)) {  		res = -EMSGSIZE;  		goto exit;  	}  |