diff options
author | Tom Tromey <tom@tromey.com> | 2021-12-30 09:46:02 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-01-26 15:19:13 -0700 |
commit | 6c92c339539ec87dc12783e9c8f1688a4a370c03 (patch) | |
tree | 5f3d0621646cae14436ab8e63edcf3542c236f86 /gdb/mi | |
parent | bbea68079781ac4c2fc941867ee9888585cafb77 (diff) | |
download | gdb-6c92c339539ec87dc12783e9c8f1688a4a370c03.zip gdb-6c92c339539ec87dc12783e9c8f1688a4a370c03.tar.gz gdb-6c92c339539ec87dc12783e9c8f1688a4a370c03.tar.bz2 |
Convert wrap_here to use integer parameter
I think it only really makes sense to call wrap_here with an argument
consisting solely of spaces. Given this, it seemed better to me that
the argument be an int, rather than a string. This patch is the
result. Much of it was written by a script.
Diffstat (limited to 'gdb/mi')
-rw-r--r-- | gdb/mi/mi-out.c | 4 | ||||
-rw-r--r-- | gdb/mi/mi-out.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gdb/mi/mi-out.c b/gdb/mi/mi-out.c index 20c6f0f..72ae36d 100644 --- a/gdb/mi/mi-out.c +++ b/gdb/mi/mi-out.c @@ -172,9 +172,9 @@ mi_ui_out::do_message (const ui_file_style &style, } void -mi_ui_out::do_wrap_hint (const char *identstring) +mi_ui_out::do_wrap_hint (int indent) { - wrap_here (identstring); + wrap_here (indent); } void diff --git a/gdb/mi/mi-out.h b/gdb/mi/mi-out.h index 1b7fa96..8f2f2d8 100644 --- a/gdb/mi/mi-out.h +++ b/gdb/mi/mi-out.h @@ -76,7 +76,7 @@ protected: virtual void do_message (const ui_file_style &style, const char *format, va_list args) override ATTRIBUTE_PRINTF (3,0); - virtual void do_wrap_hint (const char *identstring) override; + virtual void do_wrap_hint (int indent) override; virtual void do_flush () override; virtual void do_redirect (struct ui_file *outstream) override; |