summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorume <ume@FreeBSD.org>2003-10-07 15:02:29 +0000
committerume <ume@FreeBSD.org>2003-10-07 15:02:29 +0000
commit9ce959a79e3c10e86294eb5a1fbad25c3f0ef7a1 (patch)
tree5f4ed9becfd593cce714c2c7e5696bf88a7c21e5 /sys
parent5490709ba19a70d01f2c0cb374e5e424e29e32e4 (diff)
downloadFreeBSD-src-9ce959a79e3c10e86294eb5a1fbad25c3f0ef7a1.zip
FreeBSD-src-9ce959a79e3c10e86294eb5a1fbad25c3f0ef7a1.tar.gz
return(code) -> return (code)
Obtained from: KAME
Diffstat (limited to 'sys')
-rw-r--r--sys/net/net_osdep.c4
-rw-r--r--sys/netinet/in_gif.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/net_osdep.c b/sys/net/net_osdep.c
index a035bae..7cfb142 100644
--- a/sys/net/net_osdep.c
+++ b/sys/net/net_osdep.c
@@ -1,5 +1,5 @@
/* $FreeBSD$ */
-/* $KAME: net_osdep.c,v 1.9 2001/04/06 09:22:05 itojun Exp $ */
+/* $KAME: net_osdep.c,v 1.12 2002/12/02 14:28:57 itojun Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -62,6 +62,6 @@ if_name(ifp)
cp = nam[ifbufround];
snprintf(cp, IFNAMSIZ + 10, "%s%d", ifp->if_name, ifp->if_unit);
- return((const char *)cp);
+ return ((const char *)cp);
#undef MAXNUMBUF
}
diff --git a/sys/netinet/in_gif.c b/sys/netinet/in_gif.c
index cdf094a..187b2a4 100644
--- a/sys/netinet/in_gif.c
+++ b/sys/netinet/in_gif.c
@@ -210,7 +210,7 @@ in_gif_output(ifp, family, m)
}
error = ip_output(m, NULL, &sc->gif_ro, 0, NULL, NULL);
- return(error);
+ return (error);
}
void
OpenPOWER on IntegriCloud