From: Ben Pfaff Date: Fri, 14 Dec 2012 00:38:22 +0000 (-0800) Subject: flow: Fix harmless typo in flow_wildcards_hash(). X-Git-Tag: sliver-openvswitch-1.9.90-3~10^2~89 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=ac31c5af38b4b47ccece016ab6176992da40c937;p=sliver-openvswitch.git flow: Fix harmless typo in flow_wildcards_hash(). Signed-off-by: Ben Pfaff --- 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