Changeset 5772aa1 in mainline for uspace/srv/bd/vbd/disk.c
- Timestamp:
- 2017-07-14T21:31:44Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9f64c1e
- Parents:
- 94c05b89
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/bd/vbd/disk.c
r94c05b89 r5772aa1 39 39 #include <errno.h> 40 40 #include <io/log.h> 41 #include <label/empty.h> 42 #include <label/label.h> 41 43 #include <loc.h> 42 44 #include <stdio.h> … … 842 844 if (rc != EOK) { 843 845 log_msg(LOG_DEFAULT, LVL_ERROR, "Error creating partition."); 846 goto error; 847 } 848 849 rc = label_part_empty(lpart); 850 if (rc != EOK) { 851 log_msg(LOG_DEFAULT, LVL_ERROR, "Error emptying partition."); 844 852 goto error; 845 853 }
Note:
See TracChangeset
for help on using the changeset viewer.