mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-18 15:30:21 +00:00
Remove uneeded parentheses.
MFC after: 1 week
This commit is contained in:
parent
5bb40331f6
commit
3ddcfe1e46
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=328398
@ -260,7 +260,7 @@ translator tcpinfoh_t < struct tcphdr *p > {
|
||||
tcp_ack = p == NULL ? -1 : p->th_ack;
|
||||
tcp_offset = p == NULL ? -1 : (p->th_off >> 2);
|
||||
tcp_flags = p == NULL ? 0 : p->th_flags;
|
||||
tcp_window = p == NULL ? 0 : (p->th_win);
|
||||
tcp_window = p == NULL ? 0 : p->th_win;
|
||||
tcp_checksum = p == NULL ? 0 : ntohs(p->th_sum);
|
||||
tcp_urgent = p == NULL ? 0 : p->th_urp;
|
||||
tcp_hdr = (struct tcphdr *)p;
|
||||
|
Loading…
Reference in New Issue
Block a user