Use "false" in select_frame_for_mi
authorTom Tromey <tom@tromey.com>
Mon, 22 Apr 2019 02:24:05 +0000 (20:24 -0600)
committerTom Tromey <tom@tromey.com>
Sat, 4 May 2019 20:13:27 +0000 (14:13 -0600)
This changes select_frame_for_mi to use "false" rather than "FALSE".

gdb/ChangeLog
2019-05-04  Tom Tromey  <tom@tromey.com>

* stack.c (select_frame_for_mi): Use "false", not "FALSE".

gdb/ChangeLog
gdb/stack.c

index 17c9d886bd074fa97c47567dee034dea45db48a7..dc24b26ccbe369d76892c0ad9638b986d543530b 100644 (file)
@@ -1,3 +1,7 @@
+2019-05-04  Tom Tromey  <tom@tromey.com>
+
+       * stack.c (select_frame_for_mi): Use "false", not "FALSE".
+
 2019-05-04  Tom Tromey  <tom@tromey.com>
 
        * cli/cli-cmds.c (valid_command_p): Return bool.
index e5de10949d05be52e2a5a3917db9098f7f8e0b6e..408c795e3857e604f6f7a2aa77e7ca22fc6fc31a 100644 (file)
@@ -1653,7 +1653,7 @@ select_frame_command_core (struct frame_info *fi, bool ignored)
 void
 select_frame_for_mi (struct frame_info *fi)
 {
-  select_frame_command_core (fi, FALSE /* Ignored.  */);
+  select_frame_command_core (fi, false /* Ignored.  */);
 }
 
 /* The core of all the "frame" sub-commands.  Select frame FI, and if this