summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2006-10-11 20:34:20 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2006-10-11 20:34:20 +0000
commit95897a3a325dd246d5732135e1cbc5ddd0dd68bf (patch)
tree7588790717d09a308b5e13d60c514880fa583263 /sys
parent27623ca8431ba994427720c7a631fbec84f6b828 (diff)
Oops, wrong size in struct cfattach.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/landisk/dev/obio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/landisk/dev/obio.c b/sys/arch/landisk/dev/obio.c
index 13aa0156a71..4c7208a720d 100644
--- a/sys/arch/landisk/dev/obio.c
+++ b/sys/arch/landisk/dev/obio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: obio.c,v 1.1 2006/10/07 20:52:40 miod Exp $ */
+/* $OpenBSD: obio.c,v 1.2 2006/10/11 20:34:19 miod Exp $ */
/* $NetBSD: obio.c,v 1.1 2006/09/01 21:26:18 uwe Exp $ */
/*-
@@ -60,7 +60,7 @@ int obio_print(void *, const char *);
int obio_search(struct device *, void *, void *);
struct cfattach obio_ca = {
- sizeof(struct device), obio_match, obio_attach
+ sizeof(struct obio_softc), obio_match, obio_attach
};
struct cfdriver obio_cd = {