Changes in uspace/srv/fs/exfat/exfat.c [582a0b8:1d6dd2a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/exfat/exfat.c
r582a0b8 r1d6dd2a 43 43 #include <async.h> 44 44 #include <errno.h> 45 #include <str_error.h> 45 46 #include <task.h> 46 47 #include <stdio.h> 47 48 #include <libfs.h> 49 #include <str.h> 48 50 #include "../../vfs/vfs.h" 49 51 … … 70 72 } 71 73 72 int rc = exfat_idx_init();74 errno_t rc = exfat_idx_init(); 73 75 if (rc != EOK) 74 76 goto err; … … 95 97 96 98 err: 97 printf(NAME ": Failed to register file system (%d)\n", rc);99 printf(NAME ": Failed to register file system: %s\n", str_error(rc)); 98 100 return rc; 99 101 }
Note:
See TracChangeset
for help on using the changeset viewer.