Index: uspace/lib/libc/generic/ipc.c
===================================================================
--- uspace/lib/libc/generic/ipc.c	(revision 0cc43137360df84474b0c4424e7571bdd7031787)
+++ uspace/lib/libc/generic/ipc.c	(revision d4e38c74100f1742565d55a85aba5978176a3fa4)
@@ -647,4 +647,5 @@
  * @param method	New method for the forwarded call.
  * @param arg1		New value of the first argument for the forwarded call.
+ * @param mode		Flags specifying mode of the forward operation.
  *
  * @return		Zero on success or an error code.
@@ -656,7 +657,8 @@
  */
 int ipc_forward_fast(ipc_callid_t callid, int phoneid, int method,
-    ipcarg_t arg1)
-{
-	return __SYSCALL4(SYS_IPC_FORWARD_FAST, callid, phoneid, method, arg1);
+    ipcarg_t arg1, int mode)
+{
+	return __SYSCALL5(SYS_IPC_FORWARD_FAST, callid, phoneid, method, arg1,
+	    mode);
 }
 
