Add variable declaration missing in r302372.

Submitted by:	andrew
Approved by:	re (gjb, kib)
This commit is contained in:
nwhitehorn 2016-07-06 17:46:49 +00:00
parent 27c3442d81
commit 162a0089f0

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);