summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--share/lkm/misc/module/miscmod.c4
-rw-r--r--share/lkm/syscall/module/newsyscall.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/share/lkm/misc/module/miscmod.c b/share/lkm/misc/module/miscmod.c
index 7a5cb73a396..c3026269c0a 100644
--- a/share/lkm/misc/module/miscmod.c
+++ b/share/lkm/misc/module/miscmod.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: miscmod.c,v 1.4 2008/08/03 21:31:53 kettenis Exp $ */
+/* $OpenBSD: miscmod.c,v 1.5 2009/11/13 22:10:06 deraadt Exp $ */
/*
* Makefile for miscmod
*
@@ -179,7 +179,7 @@ struct lkm_table *lkmtp;
int cmd;
int ver;
{
- DISPATCH(lkmtp,cmd,ver,miscmod_handle,miscmod_handle,lkm_nofunc)
+ DISPATCH(lkmtp,cmd,ver,miscmod_handle,miscmod_handle,lkm_nofunc);
}
diff --git a/share/lkm/syscall/module/newsyscall.c b/share/lkm/syscall/module/newsyscall.c
index ad991d333aa..b4b6a9c0ace 100644
--- a/share/lkm/syscall/module/newsyscall.c
+++ b/share/lkm/syscall/module/newsyscall.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: newsyscall.c,v 1.3 2008/08/03 21:31:53 kettenis Exp $ */
+/* $OpenBSD: newsyscall.c,v 1.4 2009/11/13 22:10:09 deraadt Exp $ */
/*
* Makefile for newsyscall
*
@@ -105,7 +105,7 @@ struct lkm_table *lkmtp;
int cmd;
int ver;
{
- DISPATCH(lkmtp,cmd,ver,newsyscall_load,lkm_nofunc,lkm_nofunc)
+ DISPATCH(lkmtp,cmd,ver,newsyscall_load,lkm_nofunc,lkm_nofunc);
}