Index: uspace/srv/hid/compositor/compositor.c
===================================================================
--- uspace/srv/hid/compositor/compositor.c	(revision 889cdb1c2046af9d31d314fa691773fa2e4f9119)
+++ uspace/srv/hid/compositor/compositor.c	(revision 53ee7a00bd79fce8184a35b196907232eed3d838)
@@ -918,5 +918,5 @@
 	/* Allocate resources for new window and register it to the location service. */
 	if (service_id == winreg_id) {
-		async_answer_0(icall, EOK);
+		async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
 
 		async_get_call(&call);
@@ -997,5 +997,5 @@
 
 	if (win) {
-		async_answer_0(icall, EOK);
+		async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
 	} else {
 		async_answer_0(icall, EINVAL);
Index: uspace/srv/hid/input/input.c
===================================================================
--- uspace/srv/hid/input/input.c	(revision 889cdb1c2046af9d31d314fa691773fa2e4f9119)
+++ uspace/srv/hid/input/input.c	(revision 53ee7a00bd79fce8184a35b196907232eed3d838)
@@ -328,5 +328,5 @@
 	}
 
-	async_answer_0(icall, EOK);
+	async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
 
 	while (true) {
Index: uspace/srv/hid/isdv4_tablet/main.c
===================================================================
--- uspace/srv/hid/isdv4_tablet/main.c	(revision 889cdb1c2046af9d31d314fa691773fa2e4f9119)
+++ uspace/srv/hid/isdv4_tablet/main.c	(revision 53ee7a00bd79fce8184a35b196907232eed3d838)
@@ -65,5 +65,5 @@
 static void mouse_connection(ipc_call_t *icall, void *arg)
 {
-	async_answer_0(icall, EOK);
+	async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
 
 	async_sess_t *sess =
Index: uspace/srv/hid/output/output.c
===================================================================
--- uspace/srv/hid/output/output.c	(revision 889cdb1c2046af9d31d314fa691773fa2e4f9119)
+++ uspace/srv/hid/output/output.c	(revision 53ee7a00bd79fce8184a35b196907232eed3d838)
@@ -398,5 +398,5 @@
 {
 	/* Accept the connection */
-	async_answer_0(icall, EOK);
+	async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
 
 	while (true) {
Index: uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c
===================================================================
--- uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c	(revision 889cdb1c2046af9d31d314fa691773fa2e4f9119)
+++ uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.c	(revision 53ee7a00bd79fce8184a35b196907232eed3d838)
@@ -372,5 +372,5 @@
 static void s3c24xx_ts_connection(ipc_call_t *icall, void *arg)
 {
-	async_answer_0(icall, EOK);
+	async_answer_5(icall, EOK, 0, 0, 0, 0, async_get_label());
 
 	while (true) {
