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/breakpoint.c | |
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/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 914f945..9567c73 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -5788,14 +5788,13 @@ bpstat_causes_stop (bpstat *bs) -/* Compute a string of spaces suitable to indent the next line +/* Compute a number of spaces suitable to indent the next line so it starts at the position corresponding to the table column named COL_NAME in the currently active table of UIOUT. */ -static char * +static int wrap_indent_at_field (struct ui_out *uiout, const char *col_name) { - static char wrap_indent[80]; int i, total_width, width, align; const char *text; @@ -5803,18 +5802,12 @@ wrap_indent_at_field (struct ui_out *uiout, const char *col_name) for (i = 1; uiout->query_table_field (i, &width, &align, &text); i++) { if (strcmp (text, col_name) == 0) - { - gdb_assert (total_width < sizeof wrap_indent); - memset (wrap_indent, ' ', total_width); - wrap_indent[total_width] = 0; - - return wrap_indent; - } + return total_width; total_width += width + 1; } - return NULL; + return 0; } /* Determine if the locations of this breakpoint will have their conditions |