diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2009-06-09 18:22:20 -0300 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-06-10 19:46:08 +0300 |
commit | a84b785e932ebeb81ff64e9059b2e249fbe0484b (patch) | |
tree | 8400d0f8f1b2fc575f2f6d98da3eec4ef954bb2c /monitor.c | |
parent | d91d9bf617aa560082d7d5c5f405d6b70f7b42c9 (diff) | |
download | qemu-a84b785e932ebeb81ff64e9059b2e249fbe0484b.tar.gz qemu-a84b785e932ebeb81ff64e9059b2e249fbe0484b.tar.bz2 qemu-a84b785e932ebeb81ff64e9059b2e249fbe0484b.zip |
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>
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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) |