Ignore:
File:
1 edited

Legend:

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

    r582a0b8 r1569a9b  
    4444#include <async.h>
    4545#include <errno.h>
     46#include <str_error.h>
    4647#include <task.h>
    4748#include <stdio.h>
     
    6768                else {
    6869                        printf(NAME " Unrecognized parameters");
    69                         rc = -1;
     70                        rc = EINVAL;
    7071                        goto err;
    7172                }
     
    7778        if (!vfs_sess) {
    7879                printf(NAME ": failed to connect to VFS\n");
    79                 return -1;
     80                rc = errno;
     81                goto err;
    8082        }
    8183
     
    9799
    98100err:
    99         printf(NAME ": Failed to register file system (%d)\n", rc);
     101        printf(NAME ": Failed to register file system: %s\n", str_error(rc));
    100102        return rc;
    101103}
Note: See TracChangeset for help on using the changeset viewer.