WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [xen-unstable] xenstore: Place return statement in the c

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [xen-unstable] xenstore: Place return statement in the correct place to fix the build.
From: Xen patchbot-unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Wed, 09 Apr 2008 09:10:15 -0700
Delivery-date: Wed, 09 Apr 2008 09:10:17 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1207753369 -3600
# Node ID 70ebf23f8a43000960ca62262941e8207da59369
# Parent  506c21c5c55547b9445b4f97428e40b5abc7feaa
xenstore: Place return statement in the correct place to fix the build.
Signed-off-by: Keir Fraser <keir.fraser@xxxxxxxxxx>
---
 tools/xenstore/xenstore_client.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff -r 506c21c5c555 -r 70ebf23f8a43 tools/xenstore/xenstore_client.c
--- a/tools/xenstore/xenstore_client.c  Wed Apr 09 15:59:54 2008 +0100
+++ b/tools/xenstore/xenstore_client.c  Wed Apr 09 16:02:49 2008 +0100
@@ -427,9 +427,9 @@ perform(enum mode mode, int optind, int 
             break;
         }
         }
-
-        return 0;
-    }
+    }
+
+    return 0;
 }
 
 static enum mode lookup_mode(const char *m)

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [xen-unstable] xenstore: Place return statement in the correct place to fix the build., Xen patchbot-unstable <=