src/vmware: Remove the whitespace before ';'

This commit is contained in:
Osier Yang 2013-05-21 15:21:21 +08:00
parent 66194f71df
commit 9b32d2dba0
2 changed files with 2 additions and 2 deletions

View File

@ -153,7 +153,7 @@ vmwareLoadDomains(struct vmware_driver *driver)
if (virCommandRun(cmd, NULL) < 0) if (virCommandRun(cmd, NULL) < 0)
goto cleanup; goto cleanup;
for (str = outbuf ; (vmxPath = strtok_r(str, "\n", &saveptr)) != NULL; for (str = outbuf; (vmxPath = strtok_r(str, "\n", &saveptr)) != NULL;
str = NULL) { str = NULL) {
if (vmxPath[0] != '/') if (vmxPath[0] != '/')

View File

@ -214,7 +214,7 @@ vmwareUpdateVMStatus(struct vmware_driver *driver, virDomainObjPtr vm)
&vmxAbsolutePath) < 0) &vmxAbsolutePath) < 0)
goto cleanup; goto cleanup;
for (str = outbuf ; (parsedVmxPath = strtok_r(str, "\n", &saveptr)) != NULL; for (str = outbuf; (parsedVmxPath = strtok_r(str, "\n", &saveptr)) != NULL;
str = NULL) { str = NULL) {
if (parsedVmxPath[0] != '/') if (parsedVmxPath[0] != '/')