aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/xc_evtchn.c
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-04-15 10:07:31 +0100
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-04-15 10:07:31 +0100
commitc702fb4c9dcc27c2ab09cf1a4bd0e5f6f6b4d6ac (patch)
tree414c242496d1fa205931b1a0d16727cc2e234243 /tools/libxc/xc_evtchn.c
parent660442fdafa7c0d0b145c0ae372aa3e93c7322eb (diff)
downloadxen-c702fb4c9dcc27c2ab09cf1a4bd0e5f6f6b4d6ac.tar.gz
xen-c702fb4c9dcc27c2ab09cf1a4bd0e5f6f6b4d6ac.tar.bz2
xen-c702fb4c9dcc27c2ab09cf1a4bd0e5f6f6b4d6ac.zip
Fix whitespace in libxc. Tabs are manually fixed.
Trailing whitespace removed with: perl -p -i -e 's/\s+$/\n/g' tools/libxc/*.[ch] Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
Diffstat (limited to 'tools/libxc/xc_evtchn.c')
-rw-r--r--tools/libxc/xc_evtchn.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/libxc/xc_evtchn.c b/tools/libxc/xc_evtchn.c
index 97cdac9548..27d464bb2f 100644
--- a/tools/libxc/xc_evtchn.c
+++ b/tools/libxc/xc_evtchn.c
@@ -1,8 +1,8 @@
/******************************************************************************
* xc_evtchn.c
- *
+ *
* API for manipulating and accessing inter-domain event channels.
- *
+ *
* Copyright (c) 2004, K A Fraser.
*/
@@ -44,7 +44,7 @@ int xc_evtchn_alloc_unbound(int xc_handle,
if ( (rc = do_evtchn_op(xc_handle, &op)) == 0 )
rc = op.u.alloc_unbound.port;
-
+
return rc;
}
@@ -62,6 +62,6 @@ int xc_evtchn_status(int xc_handle,
if ( (rc = do_evtchn_op(xc_handle, &op)) == 0 )
memcpy(status, &op.u.status, sizeof(*status));
-
+
return rc;
}