aboutsummaryrefslogtreecommitdiff
path: root/gdb/mi
diff options
context:
space:
mode:
authorAaron Merey <amerey@redhat.com>2022-06-21 17:55:29 -0400
committerAaron Merey <amerey@redhat.com>2022-06-21 17:55:29 -0400
commit982ecf32ea84b18d144a79f3ff9097decf322a2e (patch)
tree87d3a4f59f2819e7c2c55b6f0fd9a1d64926a311 /gdb/mi
parentd59d427f1f63a3200db16682ebfa8bf462a13f10 (diff)
downloadfsf-binutils-gdb-users/amerey/debuginfod-size.zip
fsf-binutils-gdb-users/amerey/debuginfod-size.tar.gz
fsf-binutils-gdb-users/amerey/debuginfod-size.tar.bz2
Improve cur/total display, remove higher verbosity settingusers/amerey/debuginfod-size
Diffstat (limited to 'gdb/mi')
-rw-r--r--gdb/mi/mi-out.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mi/mi-out.c b/gdb/mi/mi-out.c
index ee0f4db..90a2362 100644
--- a/gdb/mi/mi-out.c
+++ b/gdb/mi/mi-out.c
@@ -278,7 +278,7 @@ mi_ui_out::do_progress_notify (const std::string &msg, const std::string &unit,
if (info.state == progress_update::START)
{
struct ui_file *stream = gdb_stdout;
- gdb_printf (stream, "%s\n", msg.c_str ());
+ gdb_printf (stream, "%s", msg.c_str ());
info.state = progress_update::WORKING;
}
}