Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sysinst/sysinst.c

    rb7fd2a0 rcde999a  
    8585 * @return EOK on success or an error code
    8686 */
    87 static errno_t sysinst_label_dev(const char *dev, char **pdev)
     87static int sysinst_label_dev(const char *dev, char **pdev)
    8888{
    8989        fdisk_t *fdisk;
     
    9393        cap_spec_t cap;
    9494        service_id_t sid;
    95         errno_t rc;
     95        int rc;
    9696
    9797        printf("sysinst_label_dev(): get service ID '%s'\n", dev);
     
    154154 * @return EOK on success or an error code
    155155 */
    156 static errno_t sysinst_fs_mount(const char *dev)
     156static int sysinst_fs_mount(const char *dev)
    157157{
    158158        task_wait_t twait;
    159159        task_exit_t texit;
    160         errno_t rc;
     160        int rc;
    161161        int trc;
    162162
     
    193193 * @return EOK on success or an error code
    194194 */
    195 static errno_t sysinst_copy_boot_files(void)
     195static int sysinst_copy_boot_files(void)
    196196{
    197197        task_wait_t twait;
    198198        task_exit_t texit;
    199         errno_t rc;
     199        int rc;
    200200        int trc;
    201201
     
    260260 * @return EOK on success or an error code
    261261 */
    262 static errno_t sysinst_copy_boot_blocks(const char *devp)
     262static int sysinst_copy_boot_blocks(const char *devp)
    263263{
    264264        void *boot_img;
     
    272272        aoff64_t core_blocks;
    273273        grub_boot_blocklist_t *first_bl, *bl;
    274         errno_t rc;
     274        int rc;
    275275
    276276        printf("sysinst_copy_boot_blocks: Read boot block image.\n");
     
    355355 * @return EOK on success or an error code
    356356 */
    357 static errno_t sysinst_install(const char *dev)
    358 {
    359         errno_t rc;
     357static int sysinst_install(const char *dev)
     358{
     359        int rc;
    360360        char *pdev;
    361361
Note: See TracChangeset for help on using the changeset viewer.