Source-Changes-HG archive

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

[src/trunk]: src/sys/net/npf add missing argument



details:   https://anonhg.NetBSD.org/src/rev/b48146961c39
branches:  trunk
changeset: 785430:b48146961c39
user:      christos <christos%NetBSD.org@localhost>
date:      Wed Mar 13 13:15:47 2013 +0000

description:
add missing argument

diffstat:

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

diffs (27 lines):

diff -r 5f66b28fb361 -r b48146961c39 sys/net/npf/if_npflog.c
--- a/sys/net/npf/if_npflog.c   Wed Mar 13 09:44:20 2013 +0000
+++ b/sys/net/npf/if_npflog.c   Wed Mar 13 13:15:47 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_npflog.c,v 1.2 2013/03/13 02:34:37 christos Exp $   */
+/*     $NetBSD: if_npflog.c,v 1.3 2013/03/13 13:15:47 christos Exp $   */
 
 /*-
  * Copyright (c) 2010-2012 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_npflog.c,v 1.2 2013/03/13 02:34:37 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_npflog.c,v 1.3 2013/03/13 13:15:47 christos Exp $");
 
 #include <sys/types.h>
 #include <sys/module.h>
@@ -50,7 +50,7 @@
 #include <net/if_types.h>
 #include <net/bpf.h>
 
-MODULE(MODULE_CLASS_DRIVER, if_npflog);
+MODULE(MODULE_CLASS_DRIVER, if_npflog, NULL);
 
 typedef struct npflog_softc {
        LIST_ENTRY(npflog_softc)        sc_entry;



Home | Main Index | Thread Index | Old Index