aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2020-12-17 13:37:20 -0700
committerTom Tromey <tromey@adacore.com>2020-12-17 13:47:03 -0700
commit844a65387c55e9637359a8df1a633adb15d8966e (patch)
treee0778b5fd7dd3ea5c7eba3e4a2f3a345c3335db4 /gdb
parent32f47895b5859c1f34abec75478ef55f2d92b023 (diff)
downloadgdb-844a65387c55e9637359a8df1a633adb15d8966e.zip
gdb-844a65387c55e9637359a8df1a633adb15d8966e.tar.gz
gdb-844a65387c55e9637359a8df1a633adb15d8966e.tar.bz2
Remove a use of n_spaces
While removing printfi_filtered, I found a spot that used n_spaces where the now-ordinary "%*s" approach would do. This patch makes this change. Tested on x86-64 Fedora 32. gdb/ChangeLog 2020-12-17 Tom Tromey <tromey@adacore.com> * printcmd.c (print_variable_and_value): Don't use n_spaces.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/printcmd.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index d1b9b38..c7eeb1e 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
2020-12-17 Tom Tromey <tromey@adacore.com>
+ * printcmd.c (print_variable_and_value): Don't use n_spaces.
+
+2020-12-17 Tom Tromey <tromey@adacore.com>
+
* gdbtypes.c (print_args, dump_fn_fieldlists, print_cplus_stuff)
(print_gnat_stuff, print_fixed_point_type_info)
(recursive_dump_type): Update.
diff --git a/gdb/printcmd.c b/gdb/printcmd.c
index e95b880..de083a2 100644
--- a/gdb/printcmd.c
+++ b/gdb/printcmd.c
@@ -2258,7 +2258,7 @@ print_variable_and_value (const char *name, struct symbol *var,
if (!name)
name = var->print_name ();
- fprintf_filtered (stream, "%s%ps = ", n_spaces (2 * indent),
+ fprintf_filtered (stream, "%*s%ps = ", 2 * indent, "",
styled_string (variable_name_style.style (), name));
try