The local redefinition of PED_PARTITION_PROTECTED results in the error
but is not a problem especially if the built code doesn't have the latest
definitions.
content = "free";
else if (part->type & PED_PARTITION_METADATA)
content = "metadata";
+ /* coverity[dead_error_condition] - not true if defined */
else if (part->type & PED_PARTITION_PROTECTED)
content = "protected";
else
content = "free";
else if (part->type & PED_PARTITION_METADATA)
content = "metadata";
+ /* coverity[dead_error_condition] - not true if defined */
else if (part->type & PED_PARTITION_PROTECTED)
content = "protected";
else