diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-09-11 05:38:48 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-09-11 05:38:48 +0000 |
commit | 3077f36a703beaa821b0880e5d2c796015b4ec88 (patch) | |
tree | a6145baccb2d0e038dbff8fa573509dee74a47b7 /sys/net/if_arcsubr.c | |
parent | cc5f852b94d363dd33a348bfa1259aa75881c49a (diff) |
KNF - return is not a function.
Diffstat (limited to 'sys/net/if_arcsubr.c')
-rw-r--r-- | sys/net/if_arcsubr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/if_arcsubr.c b/sys/net/if_arcsubr.c index fba64dab5d8..9ef0598cf37 100644 --- a/sys/net/if_arcsubr.c +++ b/sys/net/if_arcsubr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_arcsubr.c,v 1.11 2002/06/30 13:04:35 itojun Exp $ */ +/* $OpenBSD: if_arcsubr.c,v 1.12 2002/09/11 05:38:47 itojun Exp $ */ /* $NetBSD: if_arcsubr.c,v 1.8 1996/05/07 02:40:29 thorpej Exp $ */ /* @@ -107,7 +107,7 @@ arc_output(ifp, m0, dst, rt0) ALTQ_DECL(struct altq_pktattr pktattr;) if ((ifp->if_flags & (IFF_UP|IFF_RUNNING)) != (IFF_UP|IFF_RUNNING)) - return(ENETDOWN); /* m, m1 aren't initialized yet */ + return (ENETDOWN); /* m, m1 aren't initialized yet */ error = newencoding = 0; ac = (struct arccom *)ifp; @@ -427,7 +427,7 @@ arc_defrag(ifp, m) /* is it the last one? */ if (af->af_lastseen > af->af_maxflag) { af->af_packet = NULL; - return(m1); + return (m1); } else return NULL; } |