Changes in uspace/srv/fs/cdfs/cdfs.c [f9b2cb4c:1d6dd2a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/cdfs/cdfs.c
rf9b2cb4c r1d6dd2a 41 41 #include <ns.h> 42 42 #include <errno.h> 43 #include <str_error.h> 43 44 #include <stdio.h> 44 45 #include <libfs.h> 46 #include <str.h> 45 47 #include "cdfs.h" 46 48 #include "cdfs_ops.h" … … 80 82 } 81 83 82 int rc = fs_register(vfs_sess, &cdfs_vfs_info, &cdfs_ops,84 errno_t rc = fs_register(vfs_sess, &cdfs_vfs_info, &cdfs_ops, 83 85 &cdfs_libfs_ops); 84 86 if (rc != EOK) { 85 printf("%s: Failed to register file system (%d)\n", NAME, rc);87 printf("%s: Failed to register file system: %s\n", NAME, str_error(rc)); 86 88 return rc; 87 89 }
Note:
See TracChangeset
for help on using the changeset viewer.