Ignore:
File:
1 edited

Legend:

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

    rc1694b6b r6c4eedf  
    4444#include <stdio.h>
    4545#include <stdlib.h>
    46 #include <str_error.h>
    4746#include <task.h>
    4847#include <vfs/vfs.h>
     
    118117        rc = fdisk_label_create(fdev, lt_mbr);
    119118        if (rc != EOK) {
    120                 printf("Error creating label: %s.\n", str_error(rc));
     119                printf("Error creating label (%d).\n", rc);
    121120                return rc;
    122121        }
     
    126125        rc = fdisk_part_get_max_avail(fdev, spc_pri, &cap);
    127126        if (rc != EOK) {
    128                 printf("Error getting available capacity: %s.\n", str_error(rc));
     127                printf("Error getting available capacity (%d).\n", rc);
    129128                return rc;
    130129        }
Note: See TracChangeset for help on using the changeset viewer.