From: Luiz Capitulino Date: Tue, 9 Jun 2009 21:22:20 +0000 (-0300) Subject: monitor: Remove uneeded 'return' statement X-Git-Tag: v0.11.0-rc0~437 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=a84b785e932ebeb81ff64e9059b2e249fbe0484b;p=qemu-xen-4.4-testing.git monitor: Remove uneeded 'return' statement The 'return' statement at the of monitor_handle_command() is not needed and can be removed. Signed-off-by: Luiz Capitulino --- diff --git a/monitor.c b/monitor.c index fd9175257..9d04d9f4c 100644 --- a/monitor.c +++ b/monitor.c @@ -2714,7 +2714,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)