]> git.proxmox.com Git - ovs.git/commitdiff
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 d511fd81d7daacb0d208f15039329e338e991cf0..ce9e6c62b8c48f92b17e41ba01c179b4b98a999c 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