]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
remove space between function name and (
authorChristophe Fergeau <teuf@gnome.org>
Thu, 17 Feb 2011 21:18:21 +0000 (22:18 +0100)
committerEric Blake <eblake@redhat.com>
Fri, 18 Feb 2011 00:10:27 +0000 (17:10 -0700)
There were several occurrences of an extra space inserted between
a function name and the ( opening the argument list in
datatypes.c. This is not consistent with the coding style used in
the rest of this file so removing this extra space makes the
code slightly more readable.

src/datatypes.c

index 7cc37c177a83667cf5f84f0e3d879ea6300d89ba..1b68f6a83eecef5fe2b42d245a98ea66ed10e45d 100644 (file)
@@ -243,19 +243,19 @@ virReleaseConnect(virConnectPtr conn) {
     virMutexUnlock(&conn->lock);
 
     if (conn->networkDriver)
-        conn->networkDriver->close (conn);
+        conn->networkDriver->close(conn);
     if (conn->interfaceDriver)
-        conn->interfaceDriver->close (conn);
+        conn->interfaceDriver->close(conn);
     if (conn->storageDriver)
-        conn->storageDriver->close (conn);
+        conn->storageDriver->close(conn);
     if (conn->deviceMonitor)
-        conn->deviceMonitor->close (conn);
+        conn->deviceMonitor->close(conn);
     if (conn->secretDriver)
-        conn->secretDriver->close (conn);
+        conn->secretDriver->close(conn);
     if (conn->nwfilterDriver)
-        conn->nwfilterDriver->close (conn);
+        conn->nwfilterDriver->close(conn);
     if (conn->driver)
-        conn->driver->close (conn);
+        conn->driver->close(conn);
 
     virMutexLock(&conn->lock);