Reap unused variable and assignment that had no effect. Noted by cross

compiling with gcc on mips.

Reviewed by:	mmacy
This commit is contained in:
Sean Bruno 2018-06-24 21:36:37 +00:00
parent 2d0730b243
commit 45fc0718d8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=335609

View file

@ -1582,11 +1582,9 @@ static void
in_pcbfree_deferred(epoch_context_t ctx)
{
struct inpcb *inp;
struct inpcbinfo *pcbinfo;
int released __unused;
inp = __containerof(ctx, struct inpcb, inp_epoch_ctx);
pcbinfo = inp->inp_pcbinfo;
INP_WLOCK(inp);
#ifdef INET