int val = virDomainFeatureTypeFromString((const char *)nodes[i]->name);
if (val < 0) {
virReportError(VIR_ERR_INTERNAL_ERROR,
- _("unexpected feature %s"),
- nodes[i]->name);
+ _("unexpected feature '%s'"), nodes[i]->name);
goto error;
}
def->features |= (1 << val);
int eoi;
if ((eoi = virDomainFeatureStateTypeFromString(tmp)) <= 0) {
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
- _("unknown value for attribute eoi: %s"),
+ _("unknown value for attribute eoi: '%s'"),
tmp);
goto error;
}