diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2025-02-06 15:12:09 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2025-02-24 15:03:42 +0000 |
commit | cacf4cb2516aa4de94aa80fecb08be4dafa5ed44 (patch) | |
tree | c6c93602f746267f92bcc888df544c7a4a1d3e89 | |
parent | f10104aeae3a17f181d5bb37b7fd7dad7fe86cba (diff) | |
download | qemu-cacf4cb2516aa4de94aa80fecb08be4dafa5ed44.zip qemu-cacf4cb2516aa4de94aa80fecb08be4dafa5ed44.tar.gz qemu-cacf4cb2516aa4de94aa80fecb08be4dafa5ed44.tar.bz2 |
monitor/hmp-cmds.c: Clean up hmp_dumpdtb printf
In hmp_dumpdtb(), we print a message when the command succeeds. This
message is missing the trailing \n, so the HMP command prompt is
printed immediately after it. We also weren't capitalizing 'DTB', or
quoting the filename in the message. Fix these nits.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-id: 20250206151214.2947842-2-peter.maydell@linaro.org
-rw-r--r-- | monitor/hmp-cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/monitor/hmp-cmds.c b/monitor/hmp-cmds.c index 3825ff4..7ded337 100644 --- a/monitor/hmp-cmds.c +++ b/monitor/hmp-cmds.c @@ -431,6 +431,6 @@ void hmp_dumpdtb(Monitor *mon, const QDict *qdict) return; } - monitor_printf(mon, "dtb dumped to %s", filename); + monitor_printf(mon, "DTB dumped to '%s'\n", filename); } #endif |