Changes in uspace/app/bdsh/cmds/modules/mount/mount.c [1d6dd2a:b14d9f9] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/mount/mount.c
r1d6dd2a rb14d9f9 37 37 #include <getopt.h> 38 38 #include <inttypes.h> 39 #include <str.h>40 39 #include "config.h" 41 40 #include "util.h" … … 79 78 mtab_ent_t *old_ent = NULL; 80 79 char *svc_name; 81 errno_t rc;80 int rc; 82 81 83 82 vfs_get_mtab_list(&mtab_list); … … 110 109 static void print_fstypes(void) 111 110 { 112 errno_t rc;111 int rc; 113 112 vfs_fstypes_t fstypes; 114 113 char **p; … … 133 132 const char *mopts = ""; 134 133 const char *dev = ""; 135 errno_t rc; 136 int c, opt_ind; 134 int rc, c, opt_ind; 137 135 unsigned int instance = 0; 138 136 bool instance_set = false;
Note:
See TracChangeset
for help on using the changeset viewer.