aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/socket.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/tipc/socket.c')
-rw-r--r--net/tipc/socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tipc/socket.c b/net/tipc/socket.c
index f7ac94de24fe..33217fc3d697 100644
--- a/net/tipc/socket.c
+++ b/net/tipc/socket.c
@@ -1195,7 +1195,7 @@ static int rx_queue_full(struct tipc_msg *msg, u32 queue_size, u32 base)
1195 if (msg_connected(msg)) 1195 if (msg_connected(msg))
1196 threshold *= 4; 1196 threshold *= 4;
1197 1197
1198 return (queue_size >= threshold); 1198 return queue_size >= threshold;
1199} 1199}
1200 1200
1201/** 1201/**