diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2015-01-27 09:45:52 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2015-01-27 09:45:52 +0000 |
commit | 6e1ed10eddcebd38a0c235de7be06c7285a428da (patch) | |
tree | 5ee081a0be18bc7479c44f28161bdcbe72c20e4e /sys/arch/macppc | |
parent | fc7f63bf9225da0cc22a5e8dd911b3b2f951a93b (diff) |
ENOGREP.
i didnt find this TASK_INITIALIZER call when changing tasks.
more beatings from deraadt@
Diffstat (limited to 'sys/arch/macppc')
-rw-r--r-- | sys/arch/macppc/dev/abtn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/dev/abtn.c b/sys/arch/macppc/dev/abtn.c index 4d774bc1940..b8e5e77a514 100644 --- a/sys/arch/macppc/dev/abtn.c +++ b/sys/arch/macppc/dev/abtn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: abtn.c,v 1.16 2014/07/12 07:20:00 blambert Exp $ */ +/* $OpenBSD: abtn.c,v 1.17 2015/01/27 09:45:51 dlg Exp $ */ /* $NetBSD: abtn.c,v 1.1 1999/07/12 17:48:26 tsubai Exp $ */ /*- @@ -73,7 +73,7 @@ struct cfdriver abtn_cd = { }; struct task eject_task = - TASK_INITIALIZER((void (*)(void *, void *))cd_eject, NULL, NULL); + TASK_INITIALIZER((void (*)(void *))cd_eject, NULL); int abtn_match(struct device *parent, void *cf, void *aux) |