Changes in uspace/srv/vfs/vfs.c [b7fd2a0:01c3bb4] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs.c

    rb7fd2a0 r01c3bb4  
    4444#include <async.h>
    4545#include <errno.h>
    46 #include <str_error.h>
    4746#include <stdio.h>
    4847#include <stdbool.h>
     
    8887int main(int argc, char **argv)
    8988{
    90         errno_t rc;
     89        int rc;
    9190
    9291        printf("%s: HelenOS VFS server\n", NAME);
     
    123122        port_id_t port;
    124123        rc = async_create_port(INTERFACE_PAGER, vfs_pager, NULL, &port);
    125         if (rc != EOK) {
    126                 printf("%s: Cannot create pager port: %s\n", NAME, str_error(rc));
     124        if (rc != EOK)
    127125                return rc;
    128         }
    129 
     126               
    130127        /*
    131128         * Set a connection handling function/fibril.
     
    144141        rc = service_register(SERVICE_VFS);
    145142        if (rc != EOK) {
    146                 printf("%s: Cannot register VFS service: %s\n", NAME, str_error(rc));
     143                printf("%s: Cannot register VFS service\n", NAME);
    147144                return rc;
    148145        }
Note: See TracChangeset for help on using the changeset viewer.