Add missing parentheses. This was reported by ccaughie via GitHub

for the userland stack.

MFC after: 3 days
This commit is contained in:
Michael Tuexen 2016-01-30 17:32:46 +00:00
parent a2d0c52540
commit 5322a0968e

View file

@ -86,7 +86,7 @@ extern struct pr_usrreqs sctp_usrreqs;
#define sctp_sbspace_failedmsgs(sb) ((long) ((sctp_maxspace(sb) > (sb)->sb_cc) ? (sctp_maxspace(sb) - (sb)->sb_cc) : 0))
#define sctp_sbspace_sub(a,b) ((a > b) ? (a - b) : 0)
#define sctp_sbspace_sub(a,b) (((a) > (b)) ? ((a) - (b)) : 0)
/*
* I tried to cache the readq entries at one point. But the reality