This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] gdb: Use NULL not 0 in a tui function.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=b75c69bbf05b90a71a3ed7e54ad24ac5ded2ae1e

commit b75c69bbf05b90a71a3ed7e54ad24ac5ded2ae1e
Author: Andrew Burgess <andrew.burgess@embecosm.com>
Date:   Thu May 21 21:21:40 2015 +0200

    gdb: Use NULL not 0 in a tui function.
    
    gdb/ChangeLog:
    
    	* tui/tui-regs.c (tui_reg_next_command): Use NULL not 0.

Diff:
---
 gdb/ChangeLog      | 4 ++++
 gdb/tui/tui-regs.c | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index f9b91d5..42ef67d 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
 2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
 
+	* tui/tui-regs.c (tui_reg_next_command): Use NULL not 0.
+
+2015-05-21  Andrew Burgess  <andrew.burgess@embecosm.com>
+
 	* tui/tui-layout.c (tui_set_layout_for_display_command): Ensure
 	buf_ptr is freed.
 
diff --git a/gdb/tui/tui-regs.c b/gdb/tui/tui-regs.c
index 903c7c6..8d4c0f8 100644
--- a/gdb/tui/tui-regs.c
+++ b/gdb/tui/tui-regs.c
@@ -561,14 +561,14 @@ tui_reg_next_command (char *arg, int from_tty)
 {
   struct gdbarch *gdbarch = get_current_arch ();
 
-  if (TUI_DATA_WIN != 0)
+  if (TUI_DATA_WIN != NULL)
     {
       struct reggroup *group
         = TUI_DATA_WIN->detail.data_display_info.current_group;
 
       group = reggroup_next (gdbarch, group);
-      if (group == 0)
-        group = reggroup_next (gdbarch, 0);
+      if (group == NULL)
+        group = reggroup_next (gdbarch, NULL);
 
       if (group)
         tui_show_registers (group);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]