[OBV,COMMIT] gdb: tui: Minor fix to compare against NULL.
Commit Message
I only made such a minor fix in order to make tui_reg_next_command
match tui_reg_prev_command.
Thanks,
Andrew
---
Minor coding standard fix to compare against NULL.
gdb/ChangeLog:
* tui/tui-regs.c (tui_reg_next_command): Compare against NULL.
---
gdb/ChangeLog | 4 ++++
gdb/tui/tui-regs.c | 2 +-
2 files changed, 5 insertions(+), 1 deletion(-)
@@ -1,5 +1,9 @@
2015-05-26 Andrew Burgess <andrew.burgess@embecosm.com>
+ * tui/tui-regs.c (tui_reg_next_command): Compare against NULL.
+
+2015-05-26 Andrew Burgess <andrew.burgess@embecosm.com>
+
* tui/tui-regs.c (tui_reg_prev_command): New function.
(_initialize_tui_regs): Add 'prev' command for 'tui reg'.
* reggroups.c (reggroup_prev): New function.
@@ -570,7 +570,7 @@ tui_reg_next_command (char *arg, int from_tty)
if (group == NULL)
group = reggroup_next (gdbarch, NULL);
- if (group)
+ if (group != NULL)
tui_show_registers (group);
}
}