diff options
author | Shahab Vahedi <shahab@synopsys.com> | 2020-01-06 13:54:18 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2020-01-06 13:43:46 +0000 |
commit | a61b4f6997cefbf28df45d5e1fa40663f0679ba8 (patch) | |
tree | 0cf74d72c863069f3ade579f900b9ee5d4a87a81 /gdb | |
parent | 559e7e5056e0671f2f248e1f9c2af849bfe3e64b (diff) | |
download | binutils-a61b4f6997cefbf28df45d5e1fa40663f0679ba8.zip binutils-a61b4f6997cefbf28df45d5e1fa40663f0679ba8.tar.gz binutils-a61b4f6997cefbf28df45d5e1fa40663f0679ba8.tar.bz2 |
GDB: Remove trailing spaces in tui-disasm.c
A few trailing spaces are removed.
gdb/ChangeLog:
2020-01-06 Shahab Vahedi <shahab@synopsys.com>
* tui/tui-disasm.c: Remove trailing spaces.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/tui/tui-disasm.c | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 22acbc0..8101a6f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2020-01-06 Shahab Vahedi <shahab@synopsys.com> + + * tui/tui-disasm.c: Remove trailing spaces. + 2020-01-06 Eli Zaretskii <eliz@gnu.org> Pedro Alves <palves@redhat.com> diff --git a/gdb/tui/tui-disasm.c b/gdb/tui/tui-disasm.c index c72b507..ebd0ba3 100644 --- a/gdb/tui/tui-disasm.c +++ b/gdb/tui/tui-disasm.c @@ -43,7 +43,7 @@ #include "gdb_curses.h" -struct tui_asm_line +struct tui_asm_line { CORE_ADDR addr; std::string addr_string; @@ -150,7 +150,7 @@ tui_find_disassembly_address (struct gdbarch *gdbarch, CORE_ADDR pc, int from) CORE_ADDR last_addr; int pos; struct bound_minimal_symbol msymbol; - + /* Find backward an address which is a symbol and for which disassembling from that address will fill completely the window. */ @@ -176,7 +176,7 @@ tui_find_disassembly_address (struct gdbarch *gdbarch, CORE_ADDR pc, int from) do { CORE_ADDR next_addr; - + pos++; if (pos >= max_lines) pos = 0; |