Module Name: src Committed By: wiz Date: Thu May 29 07:08:10 UTC 2014
Modified Files: src/sys/dev/qbus: if_il.c Log Message: Add missing braces. From Henning Petersen in PR 48846. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 src/sys/dev/qbus/if_il.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/qbus/if_il.c diff -u src/sys/dev/qbus/if_il.c:1.26 src/sys/dev/qbus/if_il.c:1.27 --- src/sys/dev/qbus/if_il.c:1.26 Sat Oct 27 17:18:37 2012 +++ src/sys/dev/qbus/if_il.c Thu May 29 07:08:10 2014 @@ -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;