aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/xenbus
diff options
context:
space:
mode:
authoremellor@ewan <emellor@ewan>2005-09-20 17:25:27 +0100
committeremellor@ewan <emellor@ewan>2005-09-20 17:25:27 +0100
commit2a9831d0a872c6a5a9158a21be12e4f7041e059a (patch)
tree424cc79ae07a00274ccc84dff34ca6ab35dca0c8 /extras/mini-os/xenbus
parentf519344e5c8657bf7894ed930d622980a6ea5362 (diff)
downloadxen-2a9831d0a872c6a5a9158a21be12e4f7041e059a.tar.gz
xen-2a9831d0a872c6a5a9158a21be12e4f7041e059a.tar.bz2
xen-2a9831d0a872c6a5a9158a21be12e4f7041e059a.zip
Remove extraneous semicolon.
Signed-off-by: Ewan Mellor <ewan@xensource.com>
Diffstat (limited to 'extras/mini-os/xenbus')
-rw-r--r--extras/mini-os/xenbus/xenbus_xs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/mini-os/xenbus/xenbus_xs.c b/extras/mini-os/xenbus/xenbus_xs.c
index 89b424055c..8a6348ab89 100644
--- a/extras/mini-os/xenbus/xenbus_xs.c
+++ b/extras/mini-os/xenbus/xenbus_xs.c
@@ -127,7 +127,7 @@ static void *xs_talkv(enum xsd_sockmsg_type type,
return ERR_PTR(err);
for (i = 0; i < num_vecs; i++) {
- err = xb_write(iovec[i].iov_base, iovec[i].iov_len);;
+ err = xb_write(iovec[i].iov_base, iovec[i].iov_len);
if (err)
return ERR_PTR(err);
}