]> xenbits.xensource.com Git - libvirt.git/commitdiff
src/vmware: Remove the whitespace before ';'
authorOsier Yang <jyang@redhat.com>
Tue, 21 May 2013 07:21:21 +0000 (15:21 +0800)
committerOsier Yang <jyang@redhat.com>
Tue, 21 May 2013 15:41:44 +0000 (23:41 +0800)
src/vmware/vmware_conf.c
src/vmware/vmware_driver.c

index 6c241870e4b08977eb6045112d869a86ca5037a9..9d3d37ee0f5a8c463a4f3529fbb6d351b8f3c774 100644 (file)
@@ -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] != '/')
index 91a271f046f7b8267c862b476069dde91a79050b..8a3fc996e633a0b25d71cae6c06acb7b094a23db 100644 (file)
@@ -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] != '/')