svn commit: r302378 - head/sys/net
Nathan Whitehorn
nwhitehorn at FreeBSD.org
Wed Jul 6 17:46:50 UTC 2016
Author: nwhitehorn
Date: Wed Jul 6 17:46:49 2016
New Revision: 302378
URL: https://svnweb.freebsd.org/changeset/base/302378
Log:
Add variable declaration missing in r302372.
Submitted by: andrew
Approved by: re (gjb, kib)
Modified:
head/sys/net/flowtable.c
Modified: head/sys/net/flowtable.c
==============================================================================
--- head/sys/net/flowtable.c Wed Jul 6 17:45:38 2016 (r302377)
+++ head/sys/net/flowtable.c Wed Jul 6 17:46:49 2016 (r302378)
@@ -739,6 +739,7 @@ flowtable_lookup_common(struct flowtable
static void
flowtable_alloc(struct flowtable *ft)
{
+ int i;
ft->ft_table = malloc(ft->ft_size * sizeof(struct flist),
M_FTABLE, M_WAITOK);
More information about the svn-src-all
mailing list