From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ME8m9-0006OB-0h for qemu-devel@nongnu.org; Tue, 09 Jun 2009 17:22:33 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ME8m4-0006NS-BF for qemu-devel@nongnu.org; Tue, 09 Jun 2009 17:22:32 -0400 Received: from [199.232.76.173] (port=43431 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ME8m4-0006NP-6C for qemu-devel@nongnu.org; Tue, 09 Jun 2009 17:22:28 -0400 Received: from mx2.redhat.com ([66.187.237.31]:51646) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1ME8m3-0002hb-P4 for qemu-devel@nongnu.org; Tue, 09 Jun 2009 17:22:28 -0400 Date: Tue, 9 Jun 2009 18:22:20 -0300 From: Luiz Capitulino Message-ID: <20090609182220.0e703cb2@redhat.com> In-Reply-To: References: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH 4/4] monitor: Remove uneeded 'return' statement List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com The 'return' statement at the of monitor_handle_command() is not needed and can be removed. Signed-off-by: Luiz Capitulino --- monitor.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/monitor.c b/monitor.c index 0ef3bce..6b45f6c 100644 --- a/monitor.c +++ b/monitor.c @@ -2728,7 +2728,6 @@ static void monitor_handle_command(Monitor *mon, const char *cmdline) fail: for(i = 0; i < MAX_ARGS; i++) qemu_free(str_allocated[i]); - return; } static void cmd_completion(const char *name, const char *list) -- 1.6.3.GIT