Subversion Repositories HelenOS

Compare Revisions

Regard whitespace Rev 4326 → Rev 4327

/branches/network/uspace/srv/fs/tmpfs/tmpfs.c
128,6 → 128,11
{
printf(NAME ": HelenOS TMPFS file system server\n");
if (!tmpfs_init()) {
printf(NAME ": failed to initialize TMPFS\n");
return -1;
}
 
int vfs_phone = ipc_connect_me_to_blocking(PHONE_NS, SERVICE_VFS, 0, 0);
if (vfs_phone < EOK) {
printf(NAME ": Unable to connect to VFS\n");