Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/tmpfs/tmpfs.c

    ra35b458 r5a6cc679  
    5050#include <task.h>
    5151#include <libfs.h>
    52 #include <str.h>
    5352#include "../../vfs/vfs.h"
    5453
     
    7574                }
    7675        }
    77 
     76       
    7877        if (!tmpfs_init()) {
    7978                printf(NAME ": failed to initialize TMPFS\n");
    8079                return -1;
    8180        }
    82 
     81       
    8382        async_sess_t *vfs_sess = service_connect_blocking(SERVICE_VFS,
    8483            INTERFACE_VFS_DRIVER, 0);
     
    8786                return -1;
    8887        }
    89 
     88       
    9089        errno_t rc = fs_register(vfs_sess, &tmpfs_vfs_info, &tmpfs_ops,
    9190            &tmpfs_libfs_ops);
     
    9493                return rc;
    9594        }
    96 
     95       
    9796        printf(NAME ": Accepting connections\n");
    9897        task_retval(0);
    9998        async_manager();
    100 
     99       
    101100        /* Not reached */
    102101        return 0;
Note: See TracChangeset for help on using the changeset viewer.