Changes in uspace/app/sysinst/sysinst.c [c1694b6b:6c4eedf] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sysinst/sysinst.c
rc1694b6b r6c4eedf 44 44 #include <stdio.h> 45 45 #include <stdlib.h> 46 #include <str_error.h>47 46 #include <task.h> 48 47 #include <vfs/vfs.h> … … 118 117 rc = fdisk_label_create(fdev, lt_mbr); 119 118 if (rc != EOK) { 120 printf("Error creating label : %s.\n", str_error(rc));119 printf("Error creating label (%d).\n", rc); 121 120 return rc; 122 121 } … … 126 125 rc = fdisk_part_get_max_avail(fdev, spc_pri, &cap); 127 126 if (rc != EOK) { 128 printf("Error getting available capacity : %s.\n", str_error(rc));127 printf("Error getting available capacity (%d).\n", rc); 129 128 return rc; 130 129 }
Note:
See TracChangeset
for help on using the changeset viewer.