summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2009-04-27 02:51:42 +0000
committerDimitri Sokolyuk <demon@dim13.org>2009-04-27 02:51:42 +0000
commit963525bb5be440f84ce37002d5ba90e0bf5fe0e3 (patch)
treef823f2d2314356a88e988af32511c188bf0e2d37
parentb908fae09dfb6405efaf42e95af0719892b206a8 (diff)
forgotten semicolon
-rw-r--r--debug/debug.c2
-rw-r--r--hidep/hidep.c2
-rw-r--r--prochide/prochide.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/debug/debug.c b/debug/debug.c
index d3ee3f2..e4c0176 100644
--- a/debug/debug.c
+++ b/debug/debug.c
@@ -28,7 +28,7 @@ MOD_SYSCALL("debug", SYS___sysctl, &debug_sysent)
int
debug_lkmentry(struct lkm_table *lkmtp, int cmd, int ver)
{
- DISPATCH(lkmtp, cmd, ver, lkm_nofunc, lkm_nofunc, lkm_nofunc)
+ DISPATCH(lkmtp, cmd, ver, lkm_nofunc, lkm_nofunc, lkm_nofunc);
}
static int
diff --git a/hidep/hidep.c b/hidep/hidep.c
index 0778c8e..3a14765 100644
--- a/hidep/hidep.c
+++ b/hidep/hidep.c
@@ -76,7 +76,7 @@ hidep_handle(struct lkm_table *lkmtp, int cmd)
int
hidep(struct lkm_table *lkmtp, int cmd, int ver)
{
- DISPATCH(lkmtp, cmd, ver, hidep_handle, hidep_handle, lkm_nofunc)
+ DISPATCH(lkmtp, cmd, ver, hidep_handle, hidep_handle, lkm_nofunc);
}
int
diff --git a/prochide/prochide.c b/prochide/prochide.c
index 10a07bf..ac2c2fa 100644
--- a/prochide/prochide.c
+++ b/prochide/prochide.c
@@ -387,5 +387,5 @@ static int prochide_unload (struct lkm_table *lkmtp, int cmd)
*/
int prochide_handler(struct lkm_table *lkmtp, int cmd, int ver)
{
- DISPATCH(lkmtp, cmd, ver, prochide_load, prochide_unload, lkm_nofunc)
+ DISPATCH(lkmtp, cmd, ver, prochide_load, prochide_unload, lkm_nofunc);
}