Changeset 89e2aac in mainline
- Timestamp:
- 2017-07-08T17:06:34Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9bf4488
- Parents:
- 1c88835
- Location:
- uspace
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sysinst/sysinst.c
r1c88835 r89e2aac 171 171 172 172 printf("sysinst_fs_mount(): verify filesystem server result\n"); 173 if (texit != TASK_EXIT_NORMAL || trc != 0) 174 return EIO; 173 if (texit != TASK_EXIT_NORMAL || trc != 0) { 174 printf("sysinst_fs_mount(): not successful, but could be already loaded.\n"); 175 } 175 176 176 177 rc = vfs_link_path(MOUNT_POINT, KIND_DIRECTORY, NULL); … … 209 210 210 211 printf("sysinst_copy_boot_files(): verify filesystem server result\n"); 211 if (texit != TASK_EXIT_NORMAL || trc != 0) 212 return EIO; 212 if (texit != TASK_EXIT_NORMAL || trc != 0) { 213 printf("sysinst_fs_mount(): not successful, but could be already loaded.\n"); 214 } 213 215 214 216 printf("sysinst_copy_boot_files(): create CD mount point\n"); -
uspace/lib/fdisk/src/fdisk.c
r1c88835 r89e2aac 735 735 vbd_part_id_t partid = 0; 736 736 vol_part_info_t vpinfo; 737 char *label; 738 int rc; 739 740 label = str_dup(pspec->label); 741 if (label == NULL) 742 return ENOMEM; 737 const char *label; 738 int rc; 739 740 label = pspec->label != NULL ? pspec->label : ""; 743 741 744 742 rc = fdisk_part_spec_prepare(dev, pspec, &vpspec); … … 762 760 if (part->svc_id != 0) { 763 761 rc = vol_part_mkfs(dev->fdisk->vol, part->svc_id, pspec->fstype, 764 pspec->label);762 label); 765 763 if (rc != EOK && rc != ENOTSUP) { 766 764 rc = EIO;
Note:
See TracChangeset
for help on using the changeset viewer.