diff options
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/py-prettyprint.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/python/py-prettyprint.c b/gdb/python/py-prettyprint.c index a88a9f5..c9bbd72 100644 --- a/gdb/python/py-prettyprint.c +++ b/gdb/python/py-prettyprint.c @@ -471,7 +471,7 @@ print_children (PyObject *printer, const char *hint, if (pretty) { gdb_puts ("\n", stream); - print_spaces_filtered (2 + 2 * recurse, stream); + print_spaces (2 + 2 * recurse, stream); } else stream->wrap_here (2 + 2 *recurse); @@ -550,14 +550,14 @@ print_children (PyObject *printer, const char *hint, if (pretty) { gdb_puts ("\n", stream); - print_spaces_filtered (2 + 2 * recurse, stream); + print_spaces (2 + 2 * recurse, stream); } gdb_puts ("...", stream); } if (pretty) { gdb_puts ("\n", stream); - print_spaces_filtered (2 * recurse, stream); + print_spaces (2 * recurse, stream); } gdb_puts ("}", stream); } |