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