diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/common/vec.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9433221..c22eb46 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2015-10-29 Pedro Alves <palves@redhat.com> + * common/vec.h (DEF_VEC_FUNC_P) [iterate]: Cast 0 to type T. + +2015-10-29 Pedro Alves <palves@redhat.com> + * guile/scm-frame.c (gdbscm_unwind_stop_reason_string): Add cast. 2015-10-29 Eli Zaretskii <eliz@gnu.org> diff --git a/gdb/common/vec.h b/gdb/common/vec.h index 2564485..6189283 100644 --- a/gdb/common/vec.h +++ b/gdb/common/vec.h @@ -573,7 +573,7 @@ static inline int VEC_OP (T,iterate) \ } \ else \ { \ - *ptr = 0; \ + *ptr = (T) 0; \ return 0; \ } \ } \ |