summaryrefslogtreecommitdiff
path: root/sys/net
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2001-07-04 23:14:57 +0000
committerMarc Espie <espie@cvs.openbsd.org>2001-07-04 23:14:57 +0000
commit2ede71b20e42d2f74d0298d6358b37726dc3dc67 (patch)
tree0124ebbc6d29caf69d8f0f322244747e5e5cb461 /sys/net
parent3c3c8e0b30db1bf4ef13d732ae4521e855b1a235 (diff)
Make preprocessor happier, don't give it untasty tokens at end of input.
Ok millert@
Diffstat (limited to 'sys/net')
-rw-r--r--sys/net/if_loop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/if_loop.c b/sys/net/if_loop.c
index 9c6d22d4014..ab0f2d67772 100644
--- a/sys/net/if_loop.c
+++ b/sys/net/if_loop.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_loop.c,v 1.19 2001/06/27 06:07:42 kjc Exp $ */
+/* $OpenBSD: if_loop.c,v 1.20 2001/07/04 23:14:54 espie Exp $ */
/* $NetBSD: if_loop.c,v 1.15 1996/05/07 02:40:33 thorpej Exp $ */
/*
@@ -297,7 +297,7 @@ looutput(ifp, m, dst, rt)
ifq = &atintrq2;
isr = NETISR_ATALK;
break;
-#endif NETATALK
+#endif /* NETATALK */
default:
printf("%s: can't handle af%d\n", ifp->if_xname,
dst->sa_family);
@@ -377,7 +377,7 @@ lo_altqstart(ifp)
ifq = &atintrq2;
isr = NETISR_ATALK;
break;
-#endif NETATALK
+#endif /* NETATALK */
default:
printf("lo_altqstart: can't handle af%d\n", af);
m_freem(m);