提交 787e3889 编写于 作者: C Christophe Fergeau 提交者: Eric Blake

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.
上级 7b9a5099
...@@ -243,19 +243,19 @@ virReleaseConnect(virConnectPtr conn) { ...@@ -243,19 +243,19 @@ virReleaseConnect(virConnectPtr conn) {
virMutexUnlock(&conn->lock); virMutexUnlock(&conn->lock);
if (conn->networkDriver) if (conn->networkDriver)
conn->networkDriver->close (conn); conn->networkDriver->close(conn);
if (conn->interfaceDriver) if (conn->interfaceDriver)
conn->interfaceDriver->close (conn); conn->interfaceDriver->close(conn);
if (conn->storageDriver) if (conn->storageDriver)
conn->storageDriver->close (conn); conn->storageDriver->close(conn);
if (conn->deviceMonitor) if (conn->deviceMonitor)
conn->deviceMonitor->close (conn); conn->deviceMonitor->close(conn);
if (conn->secretDriver) if (conn->secretDriver)
conn->secretDriver->close (conn); conn->secretDriver->close(conn);
if (conn->nwfilterDriver) if (conn->nwfilterDriver)
conn->nwfilterDriver->close (conn); conn->nwfilterDriver->close(conn);
if (conn->driver) if (conn->driver)
conn->driver->close (conn); conn->driver->close(conn);
virMutexLock(&conn->lock); virMutexLock(&conn->lock);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册