diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2008-04-27 01:36:50 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2008-04-27 01:36:50 +0000 |
commit | 0cf402d4f147d89efcc21f08c5d0ea7466a63647 (patch) | |
tree | bd609ef8e4402ad6dd01d550fb0397c526dc0497 /sys/dev/isa | |
parent | d35e12aa8f871aa01e86a962c189acf4f17b67b0 (diff) |
missing argument names in a function means it wont compile.
Diffstat (limited to 'sys/dev/isa')
-rw-r--r-- | sys/dev/isa/com_commulti.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/com_commulti.c b/sys/dev/isa/com_commulti.c index 38701ac9ba1..e4a551cc606 100644 --- a/sys/dev/isa/com_commulti.c +++ b/sys/dev/isa/com_commulti.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com_commulti.c,v 1.2 2003/06/02 23:28:02 millert Exp $ */ +/* $OpenBSD: com_commulti.c,v 1.3 2008/04/27 01:36:49 dlg Exp $ */ /* * Copyright (c) 1997 - 1999, Jason Downs. All rights reserved. * @@ -107,7 +107,7 @@ com_commulti_probe(struct device *parent, void *match, void *aux) } void -com_commulti_attach(struct device *, struct device *, void *) +com_commulti_attach(struct device *self, struct device *parent, void *aux) { struct commulti_attach_args *ca = aux; struct com_softc *sc = (void *)self; |