summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUwe Stuehler <uwe@cvs.openbsd.org>2007-06-01 20:03:32 +0000
committerUwe Stuehler <uwe@cvs.openbsd.org>2007-06-01 20:03:32 +0000
commit52453b1048ccfb9b2007e908a2a13698d3b35719 (patch)
treefa798f8ae00289c48e6273c6588ed5dde2246104
parent5c53ba9dd7c046675f4850ceb3e294c9dd3249ad (diff)
workq_add_task() flags argument position changed
-rw-r--r--sys/netbt/hci_unit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netbt/hci_unit.c b/sys/netbt/hci_unit.c
index 355f6d300bd..a3799acd7a0 100644
--- a/sys/netbt/hci_unit.c
+++ b/sys/netbt/hci_unit.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hci_unit.c,v 1.3 2007/06/01 02:46:11 uwe Exp $ */
+/* $OpenBSD: hci_unit.c,v 1.4 2007/06/01 20:03:31 uwe Exp $ */
/* $NetBSD: hci_unit.c,v 1.4 2007/03/30 20:47:03 plunky Exp $ */
/*-
@@ -91,8 +91,8 @@ hci_attach(struct hci_unit *unit)
if (hci_workq == NULL)
hci_workq = workq_create("hci_enable", 1);
if (hci_workq != NULL)
- (void)workq_add_task(hci_workq, hci_enable_task, unit,
- NULL, 0);
+ (void)workq_add_task(hci_workq, 0,
+ hci_enable_task, unit, NULL);
}
void