Changes in uspace/srv/fs/tmpfs/tmpfs.c [582a0b8:1d6dd2a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs.c
r582a0b8 r1d6dd2a 46 46 #include <async.h> 47 47 #include <errno.h> 48 #include <str_error.h> 48 49 #include <stdio.h> 49 50 #include <task.h> 50 51 #include <libfs.h> 52 #include <str.h> 51 53 #include "../../vfs/vfs.h" 52 54 … … 86 88 } 87 89 88 int rc = fs_register(vfs_sess, &tmpfs_vfs_info, &tmpfs_ops,90 errno_t rc = fs_register(vfs_sess, &tmpfs_vfs_info, &tmpfs_ops, 89 91 &tmpfs_libfs_ops); 90 92 if (rc != EOK) { 91 printf(NAME ": Failed to register file system (%d)\n", rc);93 printf(NAME ": Failed to register file system: %s\n", str_error(rc)); 92 94 return rc; 93 95 }
Note:
See TracChangeset
for help on using the changeset viewer.