Changes in uspace/app/sysinst/sysinst.c [b7fd2a0:cde999a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sysinst/sysinst.c
rb7fd2a0 rcde999a 85 85 * @return EOK on success or an error code 86 86 */ 87 static errno_t sysinst_label_dev(const char *dev, char **pdev)87 static int sysinst_label_dev(const char *dev, char **pdev) 88 88 { 89 89 fdisk_t *fdisk; … … 93 93 cap_spec_t cap; 94 94 service_id_t sid; 95 errno_t rc;95 int rc; 96 96 97 97 printf("sysinst_label_dev(): get service ID '%s'\n", dev); … … 154 154 * @return EOK on success or an error code 155 155 */ 156 static errno_t sysinst_fs_mount(const char *dev)156 static int sysinst_fs_mount(const char *dev) 157 157 { 158 158 task_wait_t twait; 159 159 task_exit_t texit; 160 errno_t rc;160 int rc; 161 161 int trc; 162 162 … … 193 193 * @return EOK on success or an error code 194 194 */ 195 static errno_t sysinst_copy_boot_files(void)195 static int sysinst_copy_boot_files(void) 196 196 { 197 197 task_wait_t twait; 198 198 task_exit_t texit; 199 errno_t rc;199 int rc; 200 200 int trc; 201 201 … … 260 260 * @return EOK on success or an error code 261 261 */ 262 static errno_t sysinst_copy_boot_blocks(const char *devp)262 static int sysinst_copy_boot_blocks(const char *devp) 263 263 { 264 264 void *boot_img; … … 272 272 aoff64_t core_blocks; 273 273 grub_boot_blocklist_t *first_bl, *bl; 274 errno_t rc;274 int rc; 275 275 276 276 printf("sysinst_copy_boot_blocks: Read boot block image.\n"); … … 355 355 * @return EOK on success or an error code 356 356 */ 357 static errno_t sysinst_install(const char *dev)358 { 359 errno_t rc;357 static int sysinst_install(const char *dev) 358 { 359 int rc; 360 360 char *pdev; 361 361
Note:
See TracChangeset
for help on using the changeset viewer.