diff options
author | Tom Tromey <tom@tromey.com> | 2019-04-21 20:24:05 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-05-04 14:13:27 -0600 |
commit | e2eb806a17490963f23be1d567cff357537df678 (patch) | |
tree | 3f3035882496acd69d9a28222e2084d2cb353844 | |
parent | 6fe876770ad6739a5b3ca50f53dfcfbe433ba0fa (diff) | |
download | gdb-e2eb806a17490963f23be1d567cff357537df678.zip gdb-e2eb806a17490963f23be1d567cff357537df678.tar.gz gdb-e2eb806a17490963f23be1d567cff357537df678.tar.bz2 |
Use "false" in select_frame_for_mi
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".
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/stack.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 17c9d88..dc24b26 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 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. 2019-05-04 Tom Tromey <tom@tromey.com> diff --git a/gdb/stack.c b/gdb/stack.c index e5de109..408c795 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 |