mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-05 21:01:13 +00:00
conf: fix error message for wrong thread_pool_size
Fix the copy-and-paste error by referring to the correct variable.
Fixes: 0df2e7df80
https://bugzilla.redhat.com/show_bug.cgi?id=2103132
Signed-off-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
ebe0e34b64
commit
17f8e36e22
@ -9949,7 +9949,7 @@ virDomainFSDefParseXML(virDomainXMLOption *xmlopt,
|
|||||||
virStrToLong_i(thread_pool_size, NULL, 10, &def->thread_pool_size) < 0) {
|
virStrToLong_i(thread_pool_size, NULL, 10, &def->thread_pool_size) < 0) {
|
||||||
virReportError(VIR_ERR_XML_ERROR,
|
virReportError(VIR_ERR_XML_ERROR,
|
||||||
_("cannot parse thread pool size '%s' for virtiofs"),
|
_("cannot parse thread pool size '%s' for virtiofs"),
|
||||||
queue_size);
|
thread_pool_size);
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user