diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0fb6a77039..00ed59880c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +Tue Jul 26 14:15:53 1994 Jim Kingdon (kingdon@lioth.cygnus.com) + + * target.c (push_target): Cast result from xmalloc. + Tue Jul 26 18:20:46 1994 Paul Flinders (ptf@smee) * elfread.c (elf_symtab_read): Discard compiler labels generated diff --git a/gdb/target.c b/gdb/target.c index e95014aa6b..bf824523e3 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -420,7 +420,8 @@ push_target (t) /* We have removed all targets in our stratum, now add the new one. */ - tmp = xmalloc (sizeof (struct target_stack_item)); + tmp = (struct target_stack_item *) + xmalloc (sizeof (struct target_stack_item)); tmp->next = cur; tmp->target_ops = t;