You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use of comma as statement separator is discouraged and reported as
warning by clang with -Wcomma.
The use of ';' to separate two assignments is more appropriate than ','.
The warnings were like:
print-tcp.c:306:54: warning: possible misuse of comma operator here
[-Wcomma]
th->ack = seq, th->seq = ack - 1;
^
0 commit comments