Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 6 Jul 2016 17:46:49 +0000 (UTC)
From:      Nathan Whitehorn <nwhitehorn@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r302378 - head/sys/net
Message-ID:  <201607061746.u66Hkncx019840@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607061746.u66Hkncx019840>