Index: kernel/generic/include/ipc/sysipc_ops.h
===================================================================
--- kernel/generic/include/ipc/sysipc_ops.h	(revision b7fd2a02e4161f4edd38548e7f8456b8021549be)
+++ kernel/generic/include/ipc/sysipc_ops.h	(revision 4e17d54b4419e0e016292f66bc09bd15538510a1)
@@ -90,5 +90,5 @@
 	 * Invoked on:		all calls
 	 */
-	errno_t (* request_preprocess)(call_t *, phone_t *);
+	errno_t (*request_preprocess)(call_t *, phone_t *);
 
 	/**
@@ -101,6 +101,6 @@
 	 *			_ipc_answer_free_call()
 	 * Invoked on:		all forgotten calls
-	 */	
-	errno_t (* request_forget)(call_t *);
+	 */
+	errno_t (*request_forget)(call_t *);
 
 	/**
@@ -111,6 +111,6 @@
 	 * Races with:		request_forget()
 	 * Invoked on:		all calls delivered to the callee
-	 */	
-	int (* request_process)(call_t *, answerbox_t *);
+	 */
+	int (*request_process)(call_t *, answerbox_t *);
 
 	/**
@@ -123,5 +123,5 @@
 	 * Invoked on:		all forgotten calls
 	 */
-	errno_t (* answer_cleanup)(call_t *, ipc_data_t *);
+	errno_t (*answer_cleanup)(call_t *, ipc_data_t *);
 
 	/**
@@ -134,5 +134,5 @@
 	 * Invoked on:		all answered calls
 	 */
-	errno_t (* answer_preprocess)(call_t *, ipc_data_t *);
+	errno_t (*answer_preprocess)(call_t *, ipc_data_t *);
 
 	/**
@@ -144,5 +144,5 @@
 	 * Invoked on:		all answered calls
 	 */
-	errno_t (* answer_process)(call_t *);
+	errno_t (*answer_process)(call_t *);
 } sysipc_ops_t;
 
