[ovs-dev] [PATCH] flow: Fix harmless typo in flow_wildcards_hash().

Ben Pfaff blp at nicira.com
Fri Dec 14 00:38:57 UTC 2012


Signed-off-by: Ben Pfaff <blp at nicira.com>
---
 lib/flow.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/flow.c b/lib/flow.c
index 16e2441..89488e5 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
-- 
1.7.2.5




More information about the dev mailing list