提交 cc35a44c 编写于 作者: P Peter Maydell

Merge remote-tracking branch 'remotes/qmp-unstable/queue/qmp' into staging

* remotes/qmp-unstable/queue/qmp:
  exec: file_ram_alloc(): print error when prealloc fails
  monitor: fix debug print compiling error
Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
...@@ -1164,6 +1164,7 @@ static void *file_ram_alloc(RAMBlock *block, ...@@ -1164,6 +1164,7 @@ static void *file_ram_alloc(RAMBlock *block,
error: error:
if (mem_prealloc) { if (mem_prealloc) {
error_report("%s\n", error_get_pretty(*errp));
exit(1); exit(1);
} }
return NULL; return NULL;
......
...@@ -4747,8 +4747,11 @@ static void monitor_find_completion(void *opaque, ...@@ -4747,8 +4747,11 @@ static void monitor_find_completion(void *opaque,
return; return;
} }
#ifdef DEBUG_COMPLETION #ifdef DEBUG_COMPLETION
for (i = 0; i < nb_args; i++) { {
monitor_printf(mon, "arg%d = '%s'\n", i, args[i]); int i;
for (i = 0; i < nb_args; i++) {
monitor_printf(mon, "arg%d = '%s'\n", i, args[i]);
}
} }
#endif #endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册