From: Jan Engelhardt <jengelh@xxxxxxxxxx> The compiler is probably smart enough to see that the type cannot change, but make an "else" out of it, just for fun. Signed-off-by: Jan Engelhardt <jengelh@xxxxxxxxxx> --- qa/ct_events_reliable.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/qa/ct_events_reliable.c b/qa/ct_events_reliable.c index 1c8e194..b51d0e5 100644 --- a/qa/ct_events_reliable.c +++ b/qa/ct_events_reliable.c @@ -15,7 +15,7 @@ static int event_cb(enum nf_conntrack_msg_type type, { if (type == NFCT_T_NEW) new++; - if (type == NFCT_T_UPDATE) + else if (type == NFCT_T_UPDATE) update++; else if (type == NFCT_T_DESTROY) destroy++; -- 1.7.7 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html