From 6415e9aafb80a5089051225d480701b53cf9f33a Mon Sep 17 00:00:00 2001 From: Nathan Whitehorn Date: Wed, 6 Jul 2016 17:46:49 +0000 Subject: [PATCH] Add variable declaration missing in r302372. Submitted by: andrew Approved by: re (gjb, kib) --- sys/net/flowtable.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/net/flowtable.c b/sys/net/flowtable.c index 48f7ff053a7b..a40a4e69e781 100644 --- a/sys/net/flowtable.c +++ b/sys/net/flowtable.c @@ -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);