From: Han Han Date: Thu, 26 Jul 2018 13:52:46 +0000 (+0800) Subject: conf: Fix a error msg typo in virDomainVideoDefValidate X-Git-Tag: v4.6.0-rc1~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1c4480390da7243e37daee37f8a40cb439a6a7c;p=thirdparty%2Flibvirt.git conf: Fix a error msg typo in virDomainVideoDefValidate https://bugzilla.redhat.com/show_bug.cgi?id=1607825 Introduced by commit d48813e8. Signed-off-by: Han Han Reviewed-by: Erik Skultety --- diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c index 33b0b4ab68..c2ccbcca91 100644 --- a/src/conf/domain_conf.c +++ b/src/conf/domain_conf.c @@ -5687,7 +5687,7 @@ virDomainVideoDefValidate(const virDomainVideoDef *video, if (def->videos[i]->type == VIR_DOMAIN_VIDEO_TYPE_NONE && def->nvideos > 1) { virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s", - _("a '%s' video type must be the only video device " + _("a 'none' video type must be the only video device " "defined for the domain")); return -1; }