From: Christophe Fergeau Date: Thu, 17 Feb 2011 21:18:21 +0000 (+0100) Subject: remove space between function name and ( X-Git-Tag: CVE-2011-1146~145 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=787e38890e2ea905bbe0e231bfbda353df00ff86;p=thirdparty%2Flibvirt.git remove space between function name and ( 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. --- diff --git a/src/datatypes.c b/src/datatypes.c index 7cc37c177a..1b68f6a83e 100644 --- a/src/datatypes.c +++ b/src/datatypes.c @@ -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);