summaryrefslogtreecommitdiff
path: root/libhurd-cap-server
diff options
context:
space:
mode:
authormarcus <marcus>2004-03-25 16:09:59 +0000
committermarcus <marcus>2004-03-25 16:09:59 +0000
commitfacfc83eff5cbfb04a98d11ce1c7c7359c987df6 (patch)
treec1e9f1a818a390974a32cfbb94f929d6efdaab38 /libhurd-cap-server
parent1083d672cc7c4e802baf312225848d7b51de79d9 (diff)
2004-03-25 Marcus Brinkmann <marcus@gnu.org>
* task-death.h (task_death_notify_t): Fix return type (should be void, not void *).
Diffstat (limited to 'libhurd-cap-server')
-rw-r--r--libhurd-cap-server/ChangeLog5
-rw-r--r--libhurd-cap-server/task-death.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/libhurd-cap-server/ChangeLog b/libhurd-cap-server/ChangeLog
index f2a7e4d..facbeed 100644
--- a/libhurd-cap-server/ChangeLog
+++ b/libhurd-cap-server/ChangeLog
@@ -1,3 +1,8 @@
+2004-03-25 Marcus Brinkmann <marcus@gnu.org>
+
+ * task-death.h (task_death_notify_t): Fix return type (should be
+ void, not void *).
+
2004-03-23 Marcus Brinkmann <marcus@gnu.org>
* Makefile.am (includehurd_HEADERS): Add table.h and task-death.h.
diff --git a/libhurd-cap-server/task-death.h b/libhurd-cap-server/task-death.h
index 5f967a9..c4b72a8 100644
--- a/libhurd-cap-server/task-death.h
+++ b/libhurd-cap-server/task-death.h
@@ -45,7 +45,7 @@
/* The type of a function callback that you can use to be informed
about task deaths. */
-typedef void (*task_death_notify_t) (void *hook, hurd_task_id_t task_id);
+typedef void (task_death_notify_t) (void *hook, hurd_task_id_t task_id);
/* The struct you have to use to add your own notification
handler. */