aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenstore
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-04-09 16:02:49 +0100
committerKeir Fraser <keir.fraser@citrix.com>2008-04-09 16:02:49 +0100
commit02cb043f479610c7045e19cda1b63f0a28959584 (patch)
tree06fc9ba58bf584cd45d85a69d6af956d7b15bf65 /tools/xenstore
parent3d405489212d4f87bc382112dda1228f83db2453 (diff)
downloadxen-02cb043f479610c7045e19cda1b63f0a28959584.tar.gz
xen-02cb043f479610c7045e19cda1b63f0a28959584.tar.bz2
xen-02cb043f479610c7045e19cda1b63f0a28959584.zip
xenstore: Place return statement in the correct place to fix the build.
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'tools/xenstore')
-rw-r--r--tools/xenstore/xenstore_client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/xenstore/xenstore_client.c b/tools/xenstore/xenstore_client.c
index dabf4f72a9..762a014c26 100644
--- a/tools/xenstore/xenstore_client.c
+++ b/tools/xenstore/xenstore_client.c
@@ -427,9 +427,9 @@ perform(enum mode mode, int optind, int argc, char **argv, struct xs_handle *xsh
break;
}
}
-
- return 0;
}
+
+ return 0;
}
static enum mode lookup_mode(const char *m)