conf callback: Rearrange function parameters

Move the xmlopt and caps arguments to the end of the argument list.
This commit is contained in:
Peter Krempa
2013-03-28 14:55:55 +01:00
parent 43b99fc4c0
commit ad0d10b2b1
31 changed files with 270 additions and 276 deletions

View File

@@ -32,7 +32,7 @@ testCompareXMLToXMLFiles(const char *inxml, const char *outxml, bool live)
if (virtTestLoadFile(outxml, &outXmlData) < 0)
goto fail;
if (!(def = virDomainDefParseString(driver.caps, driver.xmlopt, inXmlData,
if (!(def = virDomainDefParseString(inXmlData, driver.caps, driver.xmlopt,
QEMU_EXPECTED_VIRT_TYPES,
live ? 0 : VIR_DOMAIN_XML_INACTIVE)))
goto fail;