mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-04 22:15:12 +08:00
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".
This commit is contained in:
@ -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>
|
2019-05-04 Tom Tromey <tom@tromey.com>
|
||||||
|
|
||||||
* cli/cli-cmds.c (valid_command_p): Return bool.
|
* cli/cli-cmds.c (valid_command_p): Return bool.
|
||||||
|
@ -1653,7 +1653,7 @@ select_frame_command_core (struct frame_info *fi, bool ignored)
|
|||||||
void
|
void
|
||||||
select_frame_for_mi (struct frame_info *fi)
|
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
|
/* The core of all the "frame" sub-commands. Select frame FI, and if this
|
||||||
|
Reference in New Issue
Block a user