diff --git a/src/vbox/vbox_common.c b/src/vbox/vbox_common.c index 8f79f0ab3190090271d4d82650269a41582bf068..6dd5b9c6de43de4d91d1a92648601e7d035a92ca 100644 --- a/src/vbox/vbox_common.c +++ b/src/vbox/vbox_common.c @@ -4367,8 +4367,8 @@ static int vboxCloseDisksRecursively(virDomainPtr dom, char *location) } rc = gVBoxAPI.UIMedium.GetChildren(medium, &childrenSize, &children); if (NS_FAILED(rc)) { - virReportError(VIR_ERR_INTERNAL_ERROR, "%s" - , _("Unable to get disk children")); + virReportError(VIR_ERR_INTERNAL_ERROR, "%s", + _("Unable to get disk children")); goto cleanup; } for (i = 0; i < childrenSize; i++) { @@ -4385,8 +4385,8 @@ static int vboxCloseDisksRecursively(virDomainPtr dom, char *location) VBOX_UTF16_TO_UTF8(childLocationUtf, &childLocation); VBOX_UTF16_FREE(childLocationUtf); if (vboxCloseDisksRecursively(dom, childLocation) < 0) { - virReportError(VIR_ERR_INTERNAL_ERROR, "%s" - , _("Unable to close disk children")); + virReportError(VIR_ERR_INTERNAL_ERROR, "%s", + _("Unable to close disk children")); goto cleanup; } VIR_FREE(childLocation); diff --git a/src/vbox/vbox_snapshot_conf.c b/src/vbox/vbox_snapshot_conf.c index 2520a02af16ce5fa043b4b446f8f196434f031c6..e1307e1009b4f28dc68d002b8edde829f1ba815f 100644 --- a/src/vbox/vbox_snapshot_conf.c +++ b/src/vbox/vbox_snapshot_conf.c @@ -70,8 +70,8 @@ virVBoxSnapshotConfCreateVBoxSnapshotConfHardDiskPtr(xmlNodePtr diskNode, 1, &searchTabResult); if (resultSize != 1) { - virReportError(VIR_ERR_XML_ERROR, "%s" - , _("Cannot parse 'uuid' attribute")); + virReportError(VIR_ERR_XML_ERROR, "%s", + _("Cannot parse 'uuid' attribute")); goto cleanup; } if (VIR_STRDUP(hardDisk->uuid, searchTabResult[0]) < 0) @@ -79,8 +79,8 @@ virVBoxSnapshotConfCreateVBoxSnapshotConfHardDiskPtr(xmlNodePtr diskNode, location = virXMLPropString(diskNode, "location"); if (location == NULL) { - virReportError(VIR_ERR_XML_ERROR, "%s" - , _("Cannot parse 'location' attribute")); + virReportError(VIR_ERR_XML_ERROR, "%s", + _("Cannot parse 'location' attribute")); goto cleanup; } if (location[0] != '/') { @@ -95,8 +95,8 @@ virVBoxSnapshotConfCreateVBoxSnapshotConfHardDiskPtr(xmlNodePtr diskNode, } hardDisk->format = virXMLPropString(diskNode, "format"); if (hardDisk->format == NULL) { - virReportError(VIR_ERR_XML_ERROR, "%s" - , _("Cannot parse 'format' attribute")); + virReportError(VIR_ERR_XML_ERROR, "%s", + _("Cannot parse 'format' attribute")); goto cleanup; } hardDisk->type = virXMLPropString(diskNode, "type"); @@ -204,8 +204,8 @@ virVBoxSnapshotConfRetrieveSnapshot(xmlNodePtr snapshotNode, 1, &searchTabResult); if (resultSize != 1) { - virReportError(VIR_ERR_XML_ERROR, "%s" - , _("Cannot parse 'uuid' attribute")); + virReportError(VIR_ERR_XML_ERROR, "%s", + _("Cannot parse 'uuid' attribute")); goto cleanup; } if (VIR_STRDUP(snapshot->uuid, searchTabResult[0]) < 0) @@ -213,14 +213,14 @@ virVBoxSnapshotConfRetrieveSnapshot(xmlNodePtr snapshotNode, snapshot->name = virXMLPropString(snapshotNode, "name"); if (snapshot->name == NULL) { - virReportError(VIR_ERR_XML_ERROR, "%s" - , _("Cannot parse 'name' attribute")); + virReportError(VIR_ERR_XML_ERROR, "%s", + _("Cannot parse 'name' attribute")); goto cleanup; } snapshot->timeStamp = virXMLPropString(snapshotNode, "timeStamp"); if (snapshot->timeStamp == NULL) { - virReportError(VIR_ERR_XML_ERROR, "%s" - , _("Cannot parse 'timeStamp' attribute")); + virReportError(VIR_ERR_XML_ERROR, "%s", + _("Cannot parse 'timeStamp' attribute")); goto cleanup; } @@ -231,16 +231,16 @@ virVBoxSnapshotConfRetrieveSnapshot(xmlNodePtr snapshotNode, hardwareNode = virXPathNode("./vbox:Hardware", xPathContext); if (hardwareNode == NULL) { - virReportError(VIR_ERR_XML_ERROR, "%s" - , _("Cannot parse node")); + virReportError(VIR_ERR_XML_ERROR, "%s", + _("Cannot parse node")); goto cleanup; } snapshot->hardware = virXMLNodeToString(snapshotNode->doc, hardwareNode); storageControllerNode = virXPathNode("./vbox:StorageControllers", xPathContext); if (storageControllerNode == NULL) { - virReportError(VIR_ERR_XML_ERROR, "%s" - , _("Cannot parse node")); + virReportError(VIR_ERR_XML_ERROR, "%s", + _("Cannot parse node")); goto cleanup; } snapshot->storageController = virXMLNodeToString(snapshotNode->doc, @@ -633,21 +633,21 @@ virVBoxSnapshotConfLoadVboxFile(const char *filePath, xPathContext->node = cur; machineNode = virXPathNode("./vbox:Machine", xPathContext); if (machineNode == NULL) { - virReportError(VIR_ERR_XML_ERROR, "%s" - , _("Cannot parse node")); + virReportError(VIR_ERR_XML_ERROR, "%s", + _("Cannot parse node")); goto cleanup; } machineDescription->uuid = virXMLPropString(machineNode, "uuid"); if (machineDescription->uuid == NULL) { - virReportError(VIR_ERR_XML_ERROR, "%s" - , _("Cannot parse 'uuid' attribute")); + virReportError(VIR_ERR_XML_ERROR, "%s", + _("Cannot parse 'uuid' attribute")); goto cleanup; } machineDescription->name = virXMLPropString(machineNode, "name"); if (machineDescription->name == NULL) { - virReportError(VIR_ERR_XML_ERROR, "%s" - , _("Cannot parse 'name' attribute")); + virReportError(VIR_ERR_XML_ERROR, "%s", + _("Cannot parse 'name' attribute")); goto cleanup; } @@ -659,8 +659,8 @@ virVBoxSnapshotConfLoadVboxFile(const char *filePath, 1, &searchResultTab); if (searchResultSize != 1) { - virReportError(VIR_ERR_XML_ERROR, "%s" - , _("Cannot parse 'currentSnapshot' attribute")); + virReportError(VIR_ERR_XML_ERROR, "%s", + _("Cannot parse 'currentSnapshot' attribute")); goto cleanup; } if (VIR_STRDUP(machineDescription->currentSnapshot, searchResultTab[0]) < 0) @@ -669,8 +669,8 @@ virVBoxSnapshotConfLoadVboxFile(const char *filePath, machineDescription->snapshotFolder = virXMLPropString(machineNode, "snapshotFolder"); if (machineDescription->snapshotFolder == NULL) { - virReportError(VIR_ERR_XML_ERROR, "%s" - , _("Cannot parse 'snapshotFolder' attribute")); + virReportError(VIR_ERR_XML_ERROR, "%s", + _("Cannot parse 'snapshotFolder' attribute")); goto cleanup; } @@ -682,16 +682,16 @@ virVBoxSnapshotConfLoadVboxFile(const char *filePath, } machineDescription->lastStateChange = virXMLPropString(machineNode, "lastStateChange"); if (machineDescription->lastStateChange == NULL) { - virReportError(VIR_ERR_XML_ERROR, "%s" - , _("Cannot parse 'lastStateChange' attribute")); + virReportError(VIR_ERR_XML_ERROR, "%s", + _("Cannot parse 'lastStateChange' attribute")); goto cleanup; } xPathContext->node = machineNode; cur = virXPathNode("./vbox:Hardware", xPathContext); if (cur == NULL) { - virReportError(VIR_ERR_XML_ERROR, "%s" - , _("Cannot parse node")); + virReportError(VIR_ERR_XML_ERROR, "%s", + _("Cannot parse node")); goto cleanup; } machineDescription->hardware = virXMLNodeToString(xml, cur); @@ -702,8 +702,8 @@ virVBoxSnapshotConfLoadVboxFile(const char *filePath, cur = virXPathNode("./vbox:StorageControllers", xPathContext); if (cur == NULL) { - virReportError(VIR_ERR_XML_ERROR, "%s" - , _("Cannot parse node")); + virReportError(VIR_ERR_XML_ERROR, "%s", + _("Cannot parse node")); goto cleanup; } machineDescription->storageController = virXMLNodeToString(xml, cur); @@ -711,8 +711,8 @@ virVBoxSnapshotConfLoadVboxFile(const char *filePath, /*retrieve mediaRegistry*/ cur = virXPathNode("./vbox:MediaRegistry", xPathContext); if (cur == NULL) { - virReportError(VIR_ERR_XML_ERROR, "%s" - , _("Cannot parse node")); + virReportError(VIR_ERR_XML_ERROR, "%s", + _("Cannot parse node")); goto cleanup; } machineDescription->mediaRegistry = virVBoxSnapshotConfRetrieveMediaRegistry(cur, xPathContext, machineLocation);