From: Francois-Xavier Le Bail Date: Sat, 21 Oct 2023 11:41:41 +0000 (+0200) Subject: Remove an unnecessary semicolon X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/599e8a85fe86fb73ec74185dc10dc14b100c58aa Remove an unnecessary semicolon Using Coccinelle script semicolon.cocci [skip ci] --- diff --git a/print-openflow-1.3.c b/print-openflow-1.3.c index b077e926..6dedf50b 100644 --- a/print-openflow-1.3.c +++ b/print-openflow-1.3.c @@ -676,7 +676,7 @@ of13_port_print(netdissect_options *ndo, cp += 4; /* state */ ND_PRINT("\n\t state 0x%08x", GET_BE_U_4(cp)); - of_bitmap_print(ndo, ofpps_bm, GET_BE_U_4(cp), OFPPS_U);; + of_bitmap_print(ndo, ofpps_bm, GET_BE_U_4(cp), OFPPS_U); cp += 4; /* curr */ ND_PRINT("\n\t curr 0x%08x", GET_BE_U_4(cp));