lib/mac-learning: Add missing semicolon
authorHelmut Schaa <helmut.schaa@googlemail.com>
Fri, 13 Dec 2013 13:17:15 +0000 (14:17 +0100)
committerBen Pfaff <blp@nicira.com>
Fri, 13 Dec 2013 17:04:46 +0000 (09:04 -0800)
Does not matter as long as ovs_assert is a simple macro but if ovs_assert
is converted to a function this will fail.

Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>
Signed-off-by: Ben Pfaff <blp@nicira.com>
lib/mac-learning.c

index fe06744..c9c1ae9 100644 (file)
@@ -290,7 +290,7 @@ mac_learning_lookup(const struct mac_learning *ml,
     } else {
         struct mac_entry *e = mac_entry_lookup(ml, dst, vlan);
 
-        ovs_assert(e == NULL || e->port.p != NULL)
+        ovs_assert(e == NULL || e->port.p != NULL);
         return e;
     }
 }