mirror of https://gitee.com/openkylin/libvirt.git
vbox: remove more extra spaces
This commit is contained in:
parent
a3dd574a07
commit
4d569245f0
|
@ -1519,8 +1519,8 @@ vboxAttachParallel(virDomainDefPtr def, vboxGlobalData *data, IMachine *machine)
|
|||
* LPT2 (Base Addr: 0x278 (decimal: 632), IRQ: 5)
|
||||
* TODO: make this more flexible
|
||||
*/
|
||||
if ((def->parallels[i]->source.type == VIR_DOMAIN_CHR_TYPE_DEV) ||
|
||||
(def->parallels[i]->source.type == VIR_DOMAIN_CHR_TYPE_PTY) ||
|
||||
if ((def->parallels[i]->source.type == VIR_DOMAIN_CHR_TYPE_DEV) ||
|
||||
(def->parallels[i]->source.type == VIR_DOMAIN_CHR_TYPE_PTY) ||
|
||||
(def->parallels[i]->source.type == VIR_DOMAIN_CHR_TYPE_FILE) ||
|
||||
(def->parallels[i]->source.type == VIR_DOMAIN_CHR_TYPE_PIPE)) {
|
||||
gVBoxAPI.UIParallelPort.SetPath(parallelPort, pathUtf16);
|
||||
|
|
|
@ -64,7 +64,7 @@ typedef short PRInt16;
|
|||
|
||||
typedef unsigned int PRUint32;
|
||||
typedef int PRInt32;
|
||||
# define PR_INT32(x) x
|
||||
# define PR_INT32(x) x
|
||||
# define PR_UINT32(x) x ## U
|
||||
|
||||
# define PR_INT32_MAX PR_INT32(2147483647)
|
||||
|
@ -76,7 +76,7 @@ typedef unsigned long PRUint64;
|
|||
typedef int PRIntn;
|
||||
typedef unsigned int PRUintn;
|
||||
|
||||
typedef double PRFloat64;
|
||||
typedef double PRFloat64;
|
||||
typedef size_t PRSize;
|
||||
|
||||
typedef ptrdiff_t PRPtrdiff;
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <libxml/xpathInternals.h>
|
||||
|
||||
#define VIR_FROM_THIS VIR_FROM_VBOX
|
||||
#define VIR_FROM_THIS VIR_FROM_VBOX
|
||||
VIR_LOG_INIT("vbox.vbox_snapshot_conf");
|
||||
|
||||
static virVBoxSnapshotConfHardDiskPtr
|
||||
|
@ -256,7 +256,7 @@ virVBoxSnapshotConfRetrieveSnapshot(xmlNodePtr snapshotNode,
|
|||
if (n && VIR_ALLOC_N(snapshot->children, n) < 0)
|
||||
goto cleanup;
|
||||
snapshot->nchildren = n;
|
||||
for (i = 0; i < snapshot->nchildren; i++) {
|
||||
for (i = 0; i < snapshot->nchildren; i++) {
|
||||
snapshot->children[i] = virVBoxSnapshotConfRetrieveSnapshot(nodes[i], xPathContext);
|
||||
if (snapshot->children[i] == NULL) {
|
||||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
||||
|
|
|
@ -2171,15 +2171,15 @@ _dumpIDEHDDsOld(virDomainDefPtr def,
|
|||
VBOX_UTF8_TO_UTF16(hddBus, &hddBusUtf16);
|
||||
|
||||
def->ndisks = 0;
|
||||
machine->vtbl->GetHardDisk(machine, hddBusUtf16, 0, 0, &hardDiskPM);
|
||||
machine->vtbl->GetHardDisk(machine, hddBusUtf16, 0, 0, &hardDiskPM);
|
||||
if (hardDiskPM)
|
||||
def->ndisks++;
|
||||
|
||||
machine->vtbl->GetHardDisk(machine, hddBusUtf16, 0, 1, &hardDiskPS);
|
||||
machine->vtbl->GetHardDisk(machine, hddBusUtf16, 0, 1, &hardDiskPS);
|
||||
if (hardDiskPS)
|
||||
def->ndisks++;
|
||||
|
||||
machine->vtbl->GetHardDisk(machine, hddBusUtf16, 1, 1, &hardDiskSS);
|
||||
machine->vtbl->GetHardDisk(machine, hddBusUtf16, 1, 1, &hardDiskSS);
|
||||
if (hardDiskSS)
|
||||
def->ndisks++;
|
||||
|
||||
|
|
|
@ -116,7 +116,7 @@ typedef struct {
|
|||
virObjectEventStatePtr domainEvents;
|
||||
int fdWatch;
|
||||
IVirtualBoxCallback *vboxCallback;
|
||||
nsIEventQueue *vboxQueue;
|
||||
nsIEventQueue *vboxQueue;
|
||||
|
||||
int volatile vboxCallBackRefCount;
|
||||
|
||||
|
|
Loading…
Reference in New Issue