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 <lcapitulino@redhat.com>
This commit is contained in:
Luiz Capitulino 2009-06-09 18:22:20 -03:00 committed by Blue Swirl
parent d91d9bf617
commit a84b785e93
1 changed files with 0 additions and 1 deletions

View File

@ -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)