Add variable declaration missing in r302372.

Submitted by:	andrew
Approved by:	re (gjb, kib)
This commit is contained in:
Nathan Whitehorn 2016-07-06 17:46:49 +00:00
parent b760df65c8
commit 6415e9aafb

View File

@ -739,6 +739,7 @@ flowtable_lookup_common(struct flowtable *ft, uint32_t *key, int keylen,
static void
flowtable_alloc(struct flowtable *ft)
{
int i;
ft->ft_table = malloc(ft->ft_size * sizeof(struct flist),
M_FTABLE, M_WAITOK);