[FYI 3/7] Use "false" in select_frame_for_mi

Tom Tromey tom@tromey.com
Sat May 4 20:11:00 GMT 2019


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 | 4 ++++
 gdb/stack.c   | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/gdb/stack.c b/gdb/stack.c
index e5de10949d0..408c795e385 100644
--- a/gdb/stack.c
+++ b/gdb/stack.c
@@ -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
-- 
2.17.2



More information about the Gdb-patches mailing list