Ignore:
File:
1 edited

Legend:

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

    rf9b2cb4c r1d6dd2a  
    4444#include <async.h>
    4545#include <errno.h>
     46#include <str_error.h>
    4647#include <task.h>
    4748#include <libfs.h>
     49#include <str.h>
    4850#include "locfs.h"
    4951#include "locfs_ops.h"
     
    8486        }
    8587       
    86         int rc = fs_register(vfs_sess, &locfs_vfs_info, &locfs_ops,
     88        errno_t rc = fs_register(vfs_sess, &locfs_vfs_info, &locfs_ops,
    8789            &locfs_libfs_ops);
    8890        if (rc != EOK) {
    89                 printf("%s: Failed to register file system (%d)\n", NAME, rc);
     91                printf("%s: Failed to register file system: %s\n", NAME, str_error(rc));
    9092                return rc;
    9193        }
Note: See TracChangeset for help on using the changeset viewer.