summaryrefslogtreecommitdiff
path: root/tests/testutilsxen.c
diff options
context:
space:
mode:
authorDaniel P. Berrange <berrange@redhat.com>2012-10-17 10:23:12 +0100
committerDaniel P. Berrange <berrange@redhat.com>2012-11-02 13:36:49 +0000
commit1c04f99970e7f7b969e6fc6cc883dbf978b3aea2 (patch)
tree143d0cf31113e671d68c94795c06c42e479979fc /tests/testutilsxen.c
parent0211fd6e04cdc402da20818df54299c6ded3d3cb (diff)
downloadlibvirt-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 'tests/testutilsxen.c')
-rw-r--r--tests/testutilsxen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testutilsxen.c b/tests/testutilsxen.c
index 7d5a872a8e..b5f20cb1a4 100644
--- a/tests/testutilsxen.c
+++ b/tests/testutilsxen.c
@@ -27,7 +27,7 @@ virCapsPtr testXenCapsInit(void) {
"xenpv"
};
- uname (&utsname);
+ uname(&utsname);
if ((caps = virCapabilitiesNew(utsname.machine,
0, 0)) == NULL)
return NULL;