From: Guy Harris Date: Fri, 22 May 2020 08:35:27 +0000 (-0700) Subject: optimize: clean up comment. X-Git-Tag: libpcap-1.10-bp~153 X-Git-Url: https://git.tcpdump.org/libpcap/commitdiff_plain/c0336d62dd04a0893d3fac6a8adc62868b074c4a?ds=sidebyside optimize: clean up comment. The "also" was from an earlier version of the code, not checked in. [skip ci] --- diff --git a/optimize.c b/optimize.c index 18fbe70e..778bcb1b 100644 --- a/optimize.c +++ b/optimize.c @@ -427,8 +427,7 @@ find_dom(opt_state_t *opt_state, struct block *root) */ x = opt_state->all_dom_sets; /* - * In opt_init(), we've also made sure the product doesn't - * overflow. + * In opt_init(), we've made sure the product doesn't overflow. */ i = opt_state->n_blocks * opt_state->nodewords; while (i != 0) { @@ -477,8 +476,7 @@ find_edom(opt_state_t *opt_state, struct block *root) x = opt_state->all_edge_sets; /* - * In opt_init(), we've also made sure the product doesn't - * overflow. + * In opt_init(), we've made sure the product doesn't overflow. */ for (i = opt_state->n_edges * opt_state->edgewords; i != 0; ) { --i;