diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-08-19 14:28:59 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-08-19 14:29:30 -0400 |
commit | 9413ea160997b55a7d7f3e3ee10d88befed15daf (patch) | |
tree | d0f08f67321d17520d89a53dab05ec539e035bd7 | |
parent | ca22cf5ed52c1b4c40dbadf893f558ef09d0c66b (diff) | |
download | gdb-9413ea160997b55a7d7f3e3ee10d88befed15daf.zip gdb-9413ea160997b55a7d7f3e3ee10d88befed15daf.tar.gz gdb-9413ea160997b55a7d7f3e3ee10d88befed15daf.tar.bz2 |
gdb: use bool in notify_command_param_changed_p and do_set_command
Trivial patch to use bool instead of int.
Change-Id: I9e5f8ee4305272a6671cbaaaf2f0484eff0d1ea5
-rw-r--r-- | gdb/cli/cli-setshow.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/gdb/cli/cli-setshow.c b/gdb/cli/cli-setshow.c index 0290ace..1025ed2 100644 --- a/gdb/cli/cli-setshow.c +++ b/gdb/cli/cli-setshow.c @@ -31,17 +31,17 @@ /* Return true if the change of command parameter should be notified. */ -static int -notify_command_param_changed_p (int param_changed, struct cmd_list_element *c) +static bool +notify_command_param_changed_p (bool param_changed, struct cmd_list_element *c) { - if (param_changed == 0) - return 0; + if (!param_changed) + return false; if (c->theclass == class_maintenance || c->theclass == class_deprecated || c->theclass == class_obscure) - return 0; + return false; - return 1; + return true; } @@ -305,7 +305,7 @@ void do_set_command (const char *arg, int from_tty, struct cmd_list_element *c) { /* A flag to indicate the option is changed or not. */ - int option_changed = 0; + bool option_changed = false; gdb_assert (c->type == set_cmd); @@ -359,7 +359,7 @@ do_set_command (const char *arg, int from_tty, struct cmd_list_element *c) xfree (*(char **) c->var); *(char **) c->var = newobj; - option_changed = 1; + option_changed = true; } else xfree (newobj); @@ -371,7 +371,7 @@ do_set_command (const char *arg, int from_tty, struct cmd_list_element *c) xfree (*(char **) c->var); *(char **) c->var = xstrdup (arg); - option_changed = 1; + option_changed = true; } break; case var_filename: @@ -404,7 +404,7 @@ do_set_command (const char *arg, int from_tty, struct cmd_list_element *c) xfree (*(char **) c->var); *(char **) c->var = val; - option_changed = 1; + option_changed = true; } else xfree (val); @@ -420,7 +420,7 @@ do_set_command (const char *arg, int from_tty, struct cmd_list_element *c) { *(bool *) c->var = val; - option_changed = 1; + option_changed = true; } } break; @@ -432,7 +432,7 @@ do_set_command (const char *arg, int from_tty, struct cmd_list_element *c) { *(enum auto_boolean *) c->var = val; - option_changed = 1; + option_changed = true; } } break; @@ -445,7 +445,7 @@ do_set_command (const char *arg, int from_tty, struct cmd_list_element *c) { *(unsigned int *) c->var = val; - option_changed = 1; + option_changed = true; } } break; @@ -481,7 +481,7 @@ do_set_command (const char *arg, int from_tty, struct cmd_list_element *c) { *(int *) c->var = val; - option_changed = 1; + option_changed = true; } break; } @@ -499,7 +499,7 @@ do_set_command (const char *arg, int from_tty, struct cmd_list_element *c) { *(const char **) c->var = match; - option_changed = 1; + option_changed = true; } } break; @@ -510,7 +510,7 @@ do_set_command (const char *arg, int from_tty, struct cmd_list_element *c) if (*(int *) c->var != val) { *(int *) c->var = val; - option_changed = 1; + option_changed = true; } } break; |