diff options
Diffstat (limited to 'gdbsupport/common-debug.cc')
-rw-r--r-- | gdbsupport/common-debug.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdbsupport/common-debug.cc b/gdbsupport/common-debug.cc index 1eb193c..0d3e919 100644 --- a/gdbsupport/common-debug.cc +++ b/gdbsupport/common-debug.cc @@ -55,7 +55,7 @@ void debug_prefixed_vprintf (const char *module, const char *func, const char *format, va_list args) { - debug_printf ("[%s] %s: ", module, func); + debug_printf ("%*s[%s] %s: ", debug_print_depth * 2, "", module, func); debug_vprintf (format, args); debug_printf ("\n"); } |