From 7bc770ceb62ede18414b7bb5788692e32477e373 Mon Sep 17 00:00:00 2001 From: Jon Loeliger Date: Tue, 31 Jan 2017 14:03:33 -0600 Subject: Convert message macro S to accept a message pointer parameter; Rather than blindly assume an unbound, fixed message parameter explicilty pass it as a paramter to the S() macro. Change-Id: Ieea1f1815cadd2eec7d9240408d69acdc3caa49a Signed-off-by: Jon Loeliger --- src/plugins/lb/lb_test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/plugins/lb/lb_test.c') diff --git a/src/plugins/lb/lb_test.c b/src/plugins/lb/lb_test.c index c150ea322ae..f553a93e4dc 100644 --- a/src/plugins/lb/lb_test.c +++ b/src/plugins/lb/lb_test.c @@ -146,7 +146,7 @@ static int api_lb_conf (vat_main_t * vam) } M(LB_CONF, mp); - S; + S(mp); W; /* NOTREACHED */ @@ -186,7 +186,7 @@ static int api_lb_add_del_vip (vat_main_t * vam) } M(LB_ADD_DEL_VIP, mp); - S; + S(mp); W; /* NOTREACHED */ return 0; @@ -211,7 +211,7 @@ static int api_lb_add_del_as (vat_main_t * vam) } M(LB_ADD_DEL_AS, mp); - S; + S(mp); W; /* NOTREACHED */ return 0; -- cgit 1.2.3-korg