Add missing braces. From Henning Petersen in PR 48846.

This commit is contained in:
wiz 2014-05-29 07:08:10 +00:00
parent 1b1872cba4
commit f4ad9addd2
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_il.c,v 1.26 2012/10/27 17:18:37 chs Exp $ */
/* $NetBSD: if_il.c,v 1.27 2014/05/29 07:08:10 wiz Exp $ */
/*
* Copyright (c) 1982, 1986 Regents of the University of California.
* All rights reserved.
@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_il.c,v 1.26 2012/10/27 17:18:37 chs Exp $");
__KERNEL_RCSID(0, "$NetBSD: if_il.c,v 1.27 2014/05/29 07:08:10 wiz Exp $");
#include "opt_inet.h"
@ -332,7 +332,7 @@ ilinit(struct ifnet *ifp)
addr->il_csr = ILC_ALLMC;
if (ilwait(ui, "all multi"))
return 0;
else {
} else {
int i;
register struct ether_addr *ep = is->is_maddrs;
struct ether_multi *enm;