Commit a84b785e932ebeb81ff64e9059b2e249fbe0484b
Committed by
Blue Swirl
1 parent
d91d9bf6
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>
Showing
1 changed file
with
0 additions
and
1 deletions
monitor.c
... | ... | @@ -2714,7 +2714,6 @@ static void monitor_handle_command(Monitor *mon, const char *cmdline) |
2714 | 2714 | fail: |
2715 | 2715 | for(i = 0; i < MAX_ARGS; i++) |
2716 | 2716 | qemu_free(str_allocated[i]); |
2717 | - return; | |
2718 | 2717 | } |
2719 | 2718 | |
2720 | 2719 | static void cmd_completion(const char *name, const char *list) | ... | ... |