Changes in uspace/app/sysinst/sysinst.c [6c4eedf:a6fc88a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sysinst/sysinst.c
r6c4eedf ra6fc88a 38 38 #include <block.h> 39 39 #include <byteorder.h> 40 #include <cap.h>41 40 #include <errno.h> 42 41 #include <fdisk.h> … … 90 89 fdisk_part_t *part; 91 90 fdisk_part_spec_t pspec; 92 cap_spec_t cap;91 fdisk_cap_t cap; 93 92 service_id_t sid; 94 93 int rc; … … 172 171 173 172 printf("sysinst_fs_mount(): verify filesystem server result\n"); 174 if (texit != TASK_EXIT_NORMAL || trc != 0) { 175 printf("sysinst_fs_mount(): not successful, but could be already loaded.\n"); 176 } 173 if (texit != TASK_EXIT_NORMAL || trc != 0) 174 return EIO; 177 175 178 176 rc = vfs_link_path(MOUNT_POINT, KIND_DIRECTORY, NULL); … … 211 209 212 210 printf("sysinst_copy_boot_files(): verify filesystem server result\n"); 213 if (texit != TASK_EXIT_NORMAL || trc != 0) { 214 printf("sysinst_fs_mount(): not successful, but could be already loaded.\n"); 215 } 211 if (texit != TASK_EXIT_NORMAL || trc != 0) 212 return EIO; 216 213 217 214 printf("sysinst_copy_boot_files(): create CD mount point\n");
Note:
See TracChangeset
for help on using the changeset viewer.