mirror of https://github.com/xqemu/xqemu.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 <lcapitulino@redhat.com>
This commit is contained in:
parent
d91d9bf617
commit
a84b785e93
|
@ -2714,7 +2714,6 @@ static void monitor_handle_command(Monitor *mon, const char *cmdline)
|
||||||
fail:
|
fail:
|
||||||
for(i = 0; i < MAX_ARGS; i++)
|
for(i = 0; i < MAX_ARGS; i++)
|
||||||
qemu_free(str_allocated[i]);
|
qemu_free(str_allocated[i]);
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void cmd_completion(const char *name, const char *list)
|
static void cmd_completion(const char *name, const char *list)
|
||||||
|
|
Loading…
Reference in New Issue