Refactor fragile msg macro W and W2 to not burry return control flow.
[vpp.git] / src / examples / sample-plugin / sample / sample_test.c
index bf7a059..6dd3a3e 100644 (file)
@@ -98,6 +98,7 @@ static int api_sample_macswap_enable_disable (vat_main_t * vam)
     int enable_disable = 1;
     u32 sw_if_index = ~0;
     vl_api_sample_macswap_enable_disable_t * mp;
+    int ret;
 
     /* Parse args required to build the message */
     while (unformat_check_input (i) != UNFORMAT_END_OF_INPUT) {
@@ -125,7 +126,8 @@ static int api_sample_macswap_enable_disable (vat_main_t * vam)
     S(mp);
 
     /* Wait for a reply... */
-    W;
+    W (ret);
+    return ret;
 }
 
 /*