From 02cb043f479610c7045e19cda1b63f0a28959584 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Wed, 9 Apr 2008 16:02:49 +0100 Subject: [PATCH] xenstore: Place return statement in the correct place to fix the build. Signed-off-by: Keir Fraser --- tools/xenstore/xenstore_client.c | 4 ++-- 1 file 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) -- 2.39.5