From: Keir Fraser Date: Wed, 9 Apr 2008 15:02:49 +0000 (+0100) Subject: xenstore: Place return statement in the correct place to fix the build. X-Git-Tag: 3.3.0-rc1~243^2~42 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=02cb043f479610c7045e19cda1b63f0a28959584;p=xen.git xenstore: Place return statement in the correct place to fix the build. Signed-off-by: Keir Fraser --- 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)