summaryrefslogtreecommitdiff
path: root/share/lkm/misc
diff options
context:
space:
mode:
Diffstat (limited to 'share/lkm/misc')
-rw-r--r--share/lkm/misc/module/miscmod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/lkm/misc/module/miscmod.c b/share/lkm/misc/module/miscmod.c
index 067777238c4..7a5cb73a396 100644
--- a/share/lkm/misc/module/miscmod.c
+++ b/share/lkm/misc/module/miscmod.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: miscmod.c,v 1.3 2000/03/02 14:46:36 todd Exp $ */
+/* $OpenBSD: miscmod.c,v 1.4 2008/08/03 21:31:53 kettenis Exp $ */
/*
* Makefile for miscmod
*
@@ -55,7 +55,7 @@ extern int misccall();
* have 0 arguments to our system call.
*/
static struct sysent newent = {
- 0, 0, misccall /* # of args, args size, fn pointer*/
+ 0, 0, 0, misccall /* # of args, args size, flags, fn pointer*/
};
/*