Index: uspace/app/tester/vfs/vfs1.c
===================================================================
--- uspace/app/tester/vfs/vfs1.c	(revision 63448512ad24cc1ceeb9a344e89d03ebe59dc3a3)
+++ uspace/app/tester/vfs/vfs1.c	(revision 5c786d177c5354b44d4e3fa8f52182f680d515c1)
@@ -38,5 +38,6 @@
 #define TMPFS_DEVHANDLE	999
 
-char buf[FS_NAME_MAXLEN + 1] = "tmpfs";
+char fs_name[] = "tmpfs";
+char mp[] = "/";
 
 char *test_vfs1(bool quiet)
@@ -53,8 +54,11 @@
 	aid_t req;
 	req = async_send_1(vfs_phone, VFS_MOUNT, TMPFS_DEVHANDLE, NULL);
-	buf[sizeof(buf) - 1] = '/';
-	if (ipc_data_send(vfs_phone, buf, sizeof(buf)) != EOK) {
+	if (ipc_data_send(vfs_phone, fs_name, strlen(fs_name)) != EOK) {
 		async_wait_for(req, &rc);
-		return "Could not send data to VFS.\n";
+		return "Could not send fs_name to VFS.\n";
+	}
+	if (ipc_data_send(vfs_phone, mp, strlen(mp)) != EOK) {
+		async_wait_for(req, &rc);
+		return "Could not send mp to VFS.\n";
 	}
 	async_wait_for(req, &rc);
