Index: uspace/lib/c/generic/vfs/vfs.c
===================================================================
--- uspace/lib/c/generic/vfs/vfs.c	(revision f8838b8ac2a352a35881b2816a5decc1f194558c)
+++ uspace/lib/c/generic/vfs/vfs.c	(revision 41e9ef7aebf4ead7c936cb12dd8540742f9e8183)
@@ -840,5 +840,5 @@
 	async_exch_t *exch = vfs_exchange_begin();
 
-	req = async_send_0(exch, VFS_IN_GET_MTAB, NULL);
+	req = async_send_0(exch, VFS_IN_MTAB_GET, NULL);
 
 	/* Ask VFS how many filesystems are mounted */
Index: uspace/lib/c/include/ipc/vfs.h
===================================================================
--- uspace/lib/c/include/ipc/vfs.h	(revision f8838b8ac2a352a35881b2816a5decc1f194558c)
+++ uspace/lib/c/include/ipc/vfs.h	(revision 41e9ef7aebf4ead7c936cb12dd8540742f9e8183)
@@ -81,5 +81,5 @@
 	VFS_IN_DUP,
 	VFS_IN_WAIT_HANDLE,
-	VFS_IN_GET_MTAB,
+	VFS_IN_MTAB_GET,
 } vfs_in_request_t;
 
Index: uspace/srv/vfs/vfs.c
===================================================================
--- uspace/srv/vfs/vfs.c	(revision f8838b8ac2a352a35881b2816a5decc1f194558c)
+++ uspace/srv/vfs/vfs.c	(revision 41e9ef7aebf4ead7c936cb12dd8540742f9e8183)
@@ -127,5 +127,5 @@
 			vfs_wait_handle(callid, &call);
 			break;
-		case VFS_IN_GET_MTAB:
+		case VFS_IN_MTAB_GET:
 			vfs_get_mtab(callid, &call);
 			break;
