From 4319a5bcf544b813240acec77d4a667f501bf53a Mon Sep 17 00:00:00 2001 From: Helmut Schaa <helmut.schaa@googlemail.com> Date: Fri, 13 Dec 2013 14:17:15 +0100 Subject: [PATCH] lib/mac-learning: Add missing semicolon 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mac-learning.c b/lib/mac-learning.c index fe0674404..c9c1ae9c0 100644 --- a/lib/mac-learning.c +++ b/lib/mac-learning.c @@ -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; } } -- 2.47.0