Changeset 372df8f in mainline for uspace/lib/label/src/label.c
- Timestamp:
- 2015-10-09T07:00:23Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0ecfc62
- Parents:
- 0bde8523
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/label/src/label.c
r0bde8523 r372df8f 40 40 #include <stdlib.h> 41 41 42 #include "dummy.h" 42 43 #include "gpt.h" 43 44 #include "mbr.h" … … 46 47 &gpt_label_ops, 47 48 &mbr_label_ops, 49 &dummy_label_ops, 48 50 NULL 49 51 }; … … 70 72 71 73 switch (ltype) { 74 case lt_none: 75 return EINVAL; 72 76 case lt_gpt: 73 77 ops = &gpt_label_ops;
Note:
See TracChangeset
for help on using the changeset viewer.