diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2015-05-26 22:31:23 +0100 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2015-05-26 22:31:23 +0100 |
commit | b93fd21dccc2cfa9a335ddba7435a341b49330ae (patch) | |
tree | 3e8d8eb240d15034a272b6d54c66793337a61123 | |
parent | 55b400279267cad460ca62a8211f0b414f564e93 (diff) | |
download | binutils-gdb-b93fd21dccc2cfa9a335ddba7435a341b49330ae.tar.gz |
gdb: tui: Minor fix to compare against NULL.
Minor coding standard fix to compare against NULL.
gdb/ChangeLog:
* tui/tui-regs.c (tui_reg_next_command): Compare against NULL.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/tui/tui-regs.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2a6a870fa99..ccb5bdeff06 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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. diff --git a/gdb/tui/tui-regs.c b/gdb/tui/tui-regs.c index 7cf386d3303..6ac3c2b4670 100644 --- a/gdb/tui/tui-regs.c +++ b/gdb/tui/tui-regs.c @@ -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); } } |