Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/net Typo (missing ampersand)



details:   https://anonhg.NetBSD.org/src/rev/4f5ae0e23c50
branches:  trunk
changeset: 346964:4f5ae0e23c50
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Mon Aug 08 09:51:39 2016 +0000

description:
Typo (missing ampersand)

diffstat:

 sys/net/if_tap.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r ca56264bb56b -r 4f5ae0e23c50 sys/net/if_tap.c
--- a/sys/net/if_tap.c  Mon Aug 08 09:42:33 2016 +0000
+++ b/sys/net/if_tap.c  Mon Aug 08 09:51:39 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_tap.c,v 1.88 2016/08/08 09:42:33 pgoyette Exp $     */
+/*     $NetBSD: if_tap.c,v 1.89 2016/08/08 09:51:39 pgoyette Exp $     */
 
 /*
  *  Copyright (c) 2003, 2004, 2008, 2009 The NetBSD Foundation.
@@ -33,7 +33,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_tap.c,v 1.88 2016/08/08 09:42:33 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_tap.c,v 1.89 2016/08/08 09:51:39 pgoyette Exp $");
 
 #if defined(_KERNEL_OPT)
 
@@ -262,7 +262,7 @@
        if_clone_attach(&tap_cloners);
 #ifdef _MODULE
        sysctl_tap_setup(&tap_sysctl_clog);
-       devsw_attach("tap", NULL, &tap_bmajor, tap_cdevsw, &tap_cmajor);
+       devsw_attach("tap", NULL, &tap_bmajor, &tap_cdevsw, &tap_cmajor);
 #endif
 }
 



Home | Main Index | Thread Index | Old Index