diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2015-10-27 09:34:30 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2015-10-27 09:34:30 -0400 |
commit | c6486df5f1400d90a13df5c6dbd96aeaccf8225b (patch) | |
tree | 917be04f71c2e8640734cf0d68389d3ed18e7532 /gdb/guile/scm-breakpoint.c | |
parent | 70b8286a9749deb6639c2fd5b39c7e4a26195738 (diff) | |
download | binutils-c6486df5f1400d90a13df5c6dbd96aeaccf8225b.zip binutils-c6486df5f1400d90a13df5c6dbd96aeaccf8225b.tar.gz binutils-c6486df5f1400d90a13df5c6dbd96aeaccf8225b.tar.bz2 |
Add scm_t_dynwind_flags casts
There is a handful of calls to
scm_dynwind_begin (0);
where the parameter is an enum, scm_t_dynwind_flags. In C++, we have no
choice but to add an explicit cast, since there is no enum value that
represents 0 (no flags set).
gdb/ChangeLog:
* guile/scm-breakpoint.c (gdbscm_set_breakpoint_stop_x): Add
scm_t_dynwind_flags casts.
* guile/scm-cmd.c (gdbscm_parse_command_name): Likewise.
* guile/scm-ports.c (gdbscm_open_memory): Likewise.
* guile/scm-value.c (gdbscm_value_to_string): Likewise.
Diffstat (limited to 'gdb/guile/scm-breakpoint.c')
-rw-r--r-- | gdb/guile/scm-breakpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/guile/scm-breakpoint.c b/gdb/guile/scm-breakpoint.c index 83574a3..b599e23 100644 --- a/gdb/guile/scm-breakpoint.c +++ b/gdb/guile/scm-breakpoint.c @@ -956,7 +956,7 @@ gdbscm_set_breakpoint_stop_x (SCM self, SCM newvalue) " this breakpoint."), ext_lang_capitalized_name (extlang)); - scm_dynwind_begin (0); + scm_dynwind_begin ((scm_t_dynwind_flags) 0); gdbscm_dynwind_xfree (error_text); gdbscm_out_of_range_error (FUNC_NAME, SCM_ARG1, self, error_text); /* The following line, while unnecessary, is present for completeness |