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