diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-05-27 15:18:49 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-05-27 15:18:49 -0400 |
commit | 24b21115f522cd0fbe55986cd914a593576294ef (patch) | |
tree | 6f2f71d9ede68e21d0371cc5db25b50d64de53af /gdb/source.c | |
parent | 01add95bed9afd5e7815439c3967db976be53f80 (diff) | |
download | gdb-24b21115f522cd0fbe55986cd914a593576294ef.zip gdb-24b21115f522cd0fbe55986cd914a593576294ef.tar.gz gdb-24b21115f522cd0fbe55986cd914a593576294ef.tar.bz2 |
gdb: fix tab after space indentation issues
I spotted some indentation issues where we had some spaces followed by
tabs at beginning of line, that I wanted to fix. So while at it, I did
a quick grep to find and fix all I could find.
gdb/ChangeLog:
* Fix tab after space indentation issues throughout.
Change-Id: I1acb414dd9c593b474ae2b8667496584df4316fd
Diffstat (limited to 'gdb/source.c')
-rw-r--r-- | gdb/source.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/source.c b/gdb/source.c index 94e61cc..c993e25 100644 --- a/gdb/source.c +++ b/gdb/source.c @@ -1322,7 +1322,7 @@ print_source_lines_base (struct symtab *s, int line, int stopline, uiout->field_string ("file", symtab_to_filename_for_display (s), file_name_style.style ()); if (uiout->is_mi_like_p () || !uiout->test_flags (ui_source_list)) - { + { const char *s_fullname = symtab_to_fullname (s); char *local_fullname; @@ -1333,7 +1333,7 @@ print_source_lines_base (struct symtab *s, int line, int stopline, strcpy (local_fullname, s_fullname); uiout->field_string ("fullname", local_fullname); - } + } uiout->text ("\n"); } |