mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add missing parentheses. This was reported by ccaughie via GitHub
for the userland stack. MFC after: 3 days
This commit is contained in:
parent
a2d0c52540
commit
5322a0968e
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue