diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2012-10-17 10:23:12 +0100 |
---|---|---|
committer | Daniel P. Berrange <berrange@redhat.com> | 2012-11-02 13:36:49 +0000 |
commit | 1c04f99970e7f7b969e6fc6cc883dbf978b3aea2 (patch) | |
tree | 143d0cf31113e671d68c94795c06c42e479979fc /tools/virsh-pool.c | |
parent | 0211fd6e04cdc402da20818df54299c6ded3d3cb (diff) | |
download | libvirt-1c04f99970e7f7b969e6fc6cc883dbf978b3aea2.tar.gz |
Remove spurious whitespace between function name & open brackets
The libvirt coding standard is to use 'function(...args...)'
instead of 'function (...args...)'. A non-trivial number of
places did not follow this rule and are fixed in this patch.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Diffstat (limited to 'tools/virsh-pool.c')
-rw-r--r-- | tools/virsh-pool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/virsh-pool.c b/tools/virsh-pool.c index 22df323aa4..c08cce654a 100644 --- a/tools/virsh-pool.c +++ b/tools/virsh-pool.c @@ -863,7 +863,7 @@ cmdPoolList(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED) return false; } - switch(poolType) { + switch (poolType) { case VIR_STORAGE_POOL_DIR: flags |= VIR_CONNECT_LIST_STORAGE_POOLS_DIR; break; |