Ignore:
File:
1 edited

Legend:

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

    r1569a9b r582a0b8  
    4444#include <async.h>
    4545#include <errno.h>
    46 #include <str_error.h>
    4746#include <task.h>
    4847#include <stdio.h>
     
    6867                else {
    6968                        printf(NAME " Unrecognized parameters");
    70                         rc = EINVAL;
     69                        rc = -1;
    7170                        goto err;
    7271                }
     
    7877        if (!vfs_sess) {
    7978                printf(NAME ": failed to connect to VFS\n");
    80                 rc = errno;
    81                 goto err;
     79                return -1;
    8280        }
    8381
     
    9997
    10098err:
    101         printf(NAME ": Failed to register file system: %s\n", str_error(rc));
     99        printf(NAME ": Failed to register file system (%d)\n", rc);
    102100        return rc;
    103101}
Note: See TracChangeset for help on using the changeset viewer.