From ac31c5af38b4b47ccece016ab6176992da40c937 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 13 Dec 2012 16:38:22 -0800 Subject: [PATCH] flow: Fix harmless typo in flow_wildcards_hash(). Signed-off-by: Ben Pfaff --- lib/flow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/flow.c b/lib/flow.c index d511fd81d..ce9e6c62b 100644 --- a/lib/flow.c +++ b/lib/flow.c @@ -596,7 +596,7 @@ flow_wildcards_combine(struct flow_wildcards *dst, uint32_t flow_wildcards_hash(const struct flow_wildcards *wc, uint32_t basis) { - return flow_hash(&wc->masks, basis);; + return flow_hash(&wc->masks, basis); } /* Returns true if 'a' and 'b' represent the same wildcards, false if they are -- 2.43.0