diff options
author | Robert Nagy <robert@cvs.openbsd.org> | 2008-08-14 14:31:32 +0000 |
---|---|---|
committer | Robert Nagy <robert@cvs.openbsd.org> | 2008-08-14 14:31:32 +0000 |
commit | 7bce8770ba482e778d45b7a01db877f990b64a10 (patch) | |
tree | a5b34b95584189fd76239dfbf86b90a960506c71 /sys/dev/acpi | |
parent | 27f5270e55dd6378aebb792ff93cdc35c046fb0d (diff) |
add missing semicolon; ok mbalmer@, marco@
Diffstat (limited to 'sys/dev/acpi')
-rw-r--r-- | sys/dev/acpi/acpibat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpibat.c b/sys/dev/acpi/acpibat.c index ee86f7c8693..6360c5eb6a0 100644 --- a/sys/dev/acpi/acpibat.c +++ b/sys/dev/acpi/acpibat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpibat.c,v 1.51 2008/08/05 17:01:06 marco Exp $ */ +/* $OpenBSD: acpibat.c,v 1.52 2008/08/14 14:31:31 robert Exp $ */ /* * Copyright (c) 2005 Marco Peereboom <marco@openbsd.org> * @@ -403,7 +403,7 @@ acpibat_notify(struct aml_node *node, int notify_type, void *arg) { struct acpibat_softc *sc = arg; struct aml_value res; - int present + int present; dnprintf(10, "acpibat_notify: %.2x %s\n", notify_type, sc->sc_devnode->name); |