diff options
author | Jon Loeliger <jdl@netgate.com> | 2017-01-31 13:19:40 -0600 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2017-02-02 17:30:40 +0000 |
commit | 8a2aea3fce9dad7c729c82ee39ce95b4f357bc83 (patch) | |
tree | b8bec671aa04e8f98a369ebb66f7d03f5523980b /build-root | |
parent | a9374df5f351d25e968f5f90a827796203cbafdd (diff) |
Ensure all M() and M2() second parameters are the message pointer.
Rather than maintain (?) an unused second parameter, t, and pull
an unbound message pointer, mp, out of context, explicitly list
the message pointer as the second parameter.
Change-Id: I92143efda6211cdf6b935470f8c71579742a6b64
Signed-off-by: Jon Loeliger <jdl@netgate.com>
Diffstat (limited to 'build-root')
-rw-r--r-- | build-root/emacs-lisp/plugin-test-skel.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-root/emacs-lisp/plugin-test-skel.el b/build-root/emacs-lisp/plugin-test-skel.el index 5231a2362ac..23f792fa472 100644 --- a/build-root/emacs-lisp/plugin-test-skel.el +++ b/build-root/emacs-lisp/plugin-test-skel.el @@ -170,7 +170,7 @@ static int api_" plugin-name "_enable_disable (vat_main_t * vam) } /* Construct the API message */ - M(" PLUGIN-NAME "_ENABLE_DISABLE, " plugin-name "_enable_disable); + M(" PLUGIN-NAME "_ENABLE_DISABLE, mp); mp->sw_if_index = ntohl (sw_if_index); mp->enable_disable = enable_disable; |