diff options
author | 2006-03-08 21:03:18 +0000 | |
---|---|---|
committer | 2006-03-08 21:03:18 +0000 | |
commit | d51de3a0beff5b1395cf82f07832449e56efbcfd (patch) | |
tree | 3fc3fc295530def8a2689161ecfb405ad86f4e0f | |
parent | Fix device id typo introduced in r1.41; found the hard way by Daniel Hamlin. (diff) | |
download | wireguard-openbsd-d51de3a0beff5b1395cf82f07832449e56efbcfd.tar.xz wireguard-openbsd-d51de3a0beff5b1395cf82f07832449e56efbcfd.zip |
Fix proto.
-rw-r--r-- | sys/dev/acpi/dsdt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/dsdt.c b/sys/dev/acpi/dsdt.c index 60030f5a420..a1153ecaf1f 100644 --- a/sys/dev/acpi/dsdt.c +++ b/sys/dev/acpi/dsdt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dsdt.c,v 1.34 2006/03/08 04:05:01 marco Exp $ */ +/* $OpenBSD: dsdt.c,v 1.35 2006/03/08 21:03:18 marco Exp $ */ /* * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org> * @@ -56,7 +56,7 @@ #define aml_ipaddr(n) ((n)-aml_root.start) #ifdef ACPI_DEBUG -const char *opregion(int id); +const char *opregion(int); const char * opregion(int id) |