diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2015-02-26 12:16:46 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2015-02-26 12:16:46 +0000 |
commit | 041ccc922ee474693a2869d4e3b59e920c739bc0 (patch) | |
tree | 36b046a650b26079b3cbf634ee9ae8fe19384319 /hmp.c | |
parent | 2559db069628981bfdc90637fac5bf1b4f4e8ef5 (diff) | |
parent | 912ae9c88669d0a0cbae1f20b8c80dde8e526251 (diff) | |
download | qemu-041ccc922ee474693a2869d4e3b59e920c739bc0.zip |
Merge remote-tracking branch 'remotes/qmp-unstable/queue/qmp' into staging
* remotes/qmp-unstable/queue/qmp:
qapi-types: add C99 index names to arrays
monitor: Fix missing err = NULL in client_migrate_info()
balloon: Fix typo
hmp: Fix warning from smatch (wrong argument in function call)
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hmp.c')
-rw-r--r-- | hmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -412,7 +412,7 @@ void hmp_info_block(Monitor *mon, const QDict *qdict) /* Print BlockBackend information */ if (!nodes) { - block_list = qmp_query_block(false); + block_list = qmp_query_block(NULL); } else { block_list = NULL; } |