| 349 | } |
| 350 | |
| 351 | int test_structure_mac(const list_part_t *list_part) |
| 352 | { /* Return 1 if bad*/ |
| 353 | list_part_t *new_list_part; |
| 354 | int res; |
| 355 | new_list_part=gen_sorted_partition_list(list_part); |
| 356 | res=is_part_overlapping(new_list_part); |
| 357 | part_free_list_only(new_list_part); |
| 358 | return res; |
| 359 | } |
| 360 | |
| 361 | static int set_part_type_mac(partition_t *partition, unsigned int part_type_mac) |
| 362 | { |
no test coverage detected