diff options
author | 2006-02-20 21:55:42 +0000 | |
---|---|---|
committer | 2006-02-20 21:55:42 +0000 | |
commit | 87a20f2ad819597ff58a8741c74bb29fdfeb857a (patch) | |
tree | 02274846c10f1ad4cfdee4975b9d6116b4dca794 | |
parent | Fixed structure size for sleep states (bad grange!) (diff) | |
download | wireguard-openbsd-87a20f2ad819597ff58a8741c74bb29fdfeb857a.tar.xz wireguard-openbsd-87a20f2ad819597ff58a8741c74bb29fdfeb857a.zip |
Fix a typo cbproc -> proc. Found by drahn@
ok jordan@
-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 5fb1713ef8d..2cc0b848b22 100644 --- a/sys/dev/acpi/dsdt.c +++ b/sys/dev/acpi/dsdt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dsdt.c,v 1.25 2006/02/19 21:32:30 jordan Exp $ */ +/* $OpenBSD: dsdt.c,v 1.26 2006/02/20 21:55:42 marco Exp $ */ /* * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org> * @@ -256,7 +256,7 @@ void aml_register_notify(struct aml_node *node, struct aml_notify_data *pdata; dnprintf(10, "aml_register_notify: %s %x\n", - node->name, cbproc); + node->name, proc); pdata = acpi_os_allocmem(sizeof(struct aml_notify_data)); pdata->node = node; pdata->cbarg = arg; |