diff options
author | nwhitehorn <nwhitehorn@FreeBSD.org> | 2016-07-06 17:46:49 +0000 |
---|---|---|
committer | nwhitehorn <nwhitehorn@FreeBSD.org> | 2016-07-06 17:46:49 +0000 |
commit | 162a0089f0b083ac07c4f14b6880ccf7f51053c1 (patch) | |
tree | 1212bc7ba75d550228ca31f7b65b406787108c64 /sys/net | |
parent | 27c3442d81b85c7249a285855300b955e73e85c8 (diff) | |
download | FreeBSD-src-162a0089f0b083ac07c4f14b6880ccf7f51053c1.zip FreeBSD-src-162a0089f0b083ac07c4f14b6880ccf7f51053c1.tar.gz |
Add variable declaration missing in r302372.
Submitted by: andrew
Approved by: re (gjb, kib)
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/flowtable.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/net/flowtable.c b/sys/net/flowtable.c index 48f7ff0..a40a4e6 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); |