diff options
author | Hongjun Ni <hongjun.ni@intel.com> | 2017-03-28 18:08:52 +0800 |
---|---|---|
committer | Hongjun Ni <hongjun.ni@intel.com> | 2017-04-05 19:27:24 +0800 |
commit | ffd582515ce0e12b11c0d23e080ff64c20301073 (patch) | |
tree | 7efe271242d4367c6286c0fd8227fb8b4c60c962 /netlink/test | |
parent | a54fc6bd0805d7f60451d608cd4b4781197de34b (diff) |
FIx compile issue for netlink and router plugin
Change-Id: I8a6f069af4acce97fd0ee262c217af645afd476d
Signed-off-by: Hongjun Ni <hongjun.ni@intel.com>
Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'netlink/test')
-rw-r--r-- | netlink/test/test.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/netlink/test/test.c b/netlink/test/test.c index 96f49f8..2922a40 100644 --- a/netlink/test/test.c +++ b/netlink/test/test.c @@ -200,11 +200,10 @@ VLIB_CLI_COMMAND (mapper_iface_command, static) = { .function = mapper_iface_command_fn, }; -clib_error_t * -vlib_plugin_register (vlib_main_t * vm, vnet_plugin_handoff_t * h, - int from_early_init) -{ - clib_warning("Loaded module"); - return 0; -} +/* *INDENT-OFF* */ +VLIB_PLUGIN_REGISTER () = { + // .version = VPP_BUILD_VER, FIXME + .description = "netlink", +}; +/* *INDENT-ON* */ |