lib/table.c: Fix the SET_LINK macro. (not that its of any worth)
diff --git a/lib/table.c b/lib/table.c
index 00ba58d..281dfb6 100644
--- a/lib/table.c
+++ b/lib/table.c
@@ -185,8 +185,8 @@
 }
 
 /* Macro version of set_link (). */
-#define SET_LINK(X,Y) (X)->link[CHECK_BIT(&(Y)->prefix,(X)->prefixlen)] = (Y);\
-                      (Y)->parent = (X)
+#define SET_LINK(X,Y) do { (X)->link[CHECK_BIT(&(Y)->p.u.prefix,(X)->p.prefixlen)] = (Y);\
+                      (Y)->parent = (X); } while (0)
 
 static void
 set_link (struct route_node *node, struct route_node *new)