flow: Fix harmless typo in flow_wildcards_hash().
authorBen Pfaff <blp@nicira.com>
Fri, 14 Dec 2012 00:38:22 +0000 (16:38 -0800)
committerBen Pfaff <blp@nicira.com>
Fri, 14 Dec 2012 21:02:56 +0000 (13:02 -0800)
Signed-off-by: Ben Pfaff <blp@nicira.com>
lib/flow.c

index d511fd8..ce9e6c6 100644 (file)
@@ -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