summaryrefslogtreecommitdiff
path: root/lkm
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1996-08-23 20:54:18 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1996-08-23 20:54:18 +0000
commit8d9c612aa2fe93cb83165f3d153f7420913e3a82 (patch)
tree8fb1ab31b04530979acbfcc9f5690ef606c4f430 /lkm
parent0c2aae450cbd4f42903032698794a47bb16f5c2b (diff)
Remove a static that is wrong
Diffstat (limited to 'lkm')
-rw-r--r--lkm/ipl/stub.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lkm/ipl/stub.c b/lkm/ipl/stub.c
index 1467fdc54c0..410b5a03547 100644
--- a/lkm/ipl/stub.c
+++ b/lkm/ipl/stub.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: stub.c,v 1.1 1996/02/25 19:20:26 mickey Exp $ */
+/* $OpenBSD: stub.c,v 1.2 1996/08/23 20:54:17 niklas Exp $ */
#include <sys/param.h>
#include <sys/systm.h>
@@ -7,7 +7,7 @@
#include <sys/exec.h>
#include <sys/lkm.h>
-static cdev_decl(ipl);
+cdev_decl(ipl);
static struct cdevsw ipl_cdevsw = cdev_gen_ipf(1,ipl);
MOD_DEV("ipl", LM_DT_CHAR, -1, &ipl_cdevsw );