fix compile error on some builds by doing the equivalent of

an "extern VNET_DEFINE" without "__used"

MFC after:	3 days
This commit is contained in:
Kip Macy 2010-05-13 19:36:13 +00:00
parent 98a5a343e3
commit fc21c49a0f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=208042

View File

@ -116,7 +116,7 @@ __FBSDID("$FreeBSD$");
#ifdef FLOWTABLE
#include <net/flowtable.h>
extern VNET_DEFINE(int, ip6_output_flowtable_size);
extern int VNET_NAME(ip6_output_flowtable_size) __section(VNET_SETNAME);
#define V_ip6_output_flowtable_size VNET(ip6_output_flowtable_size)
#endif