mirror of https://gitee.com/openkylin/libvirt.git
src/vmware: Remove the whitespace before ';'
This commit is contained in:
parent
66194f71df
commit
9b32d2dba0
|
@ -153,7 +153,7 @@ vmwareLoadDomains(struct vmware_driver *driver)
|
|||
if (virCommandRun(cmd, NULL) < 0)
|
||||
goto cleanup;
|
||||
|
||||
for (str = outbuf ; (vmxPath = strtok_r(str, "\n", &saveptr)) != NULL;
|
||||
for (str = outbuf; (vmxPath = strtok_r(str, "\n", &saveptr)) != NULL;
|
||||
str = NULL) {
|
||||
|
||||
if (vmxPath[0] != '/')
|
||||
|
|
|
@ -214,7 +214,7 @@ vmwareUpdateVMStatus(struct vmware_driver *driver, virDomainObjPtr vm)
|
|||
&vmxAbsolutePath) < 0)
|
||||
goto cleanup;
|
||||
|
||||
for (str = outbuf ; (parsedVmxPath = strtok_r(str, "\n", &saveptr)) != NULL;
|
||||
for (str = outbuf; (parsedVmxPath = strtok_r(str, "\n", &saveptr)) != NULL;
|
||||
str = NULL) {
|
||||
|
||||
if (parsedVmxPath[0] != '/')
|
||||
|
|
Loading…
Reference in New Issue