Cast result of obstack_base to gdb_byte * in a couple spots.
obstack_base returns char *. Need to cast to gdb_byte * in a couple spots. gdb/ 2013-04-19 Pedro Alves <palves@redhat.com> * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to gdb_byte *. * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
This commit is contained in:
parent
a993366103
commit
51a5cd9059
3 changed files with 9 additions and 3 deletions
|
@ -993,8 +993,8 @@ linux_make_mappings_corefile_notes (struct gdbarch *gdbarch, bfd *obfd,
|
|||
if (mapping_data.file_count != 0)
|
||||
{
|
||||
/* Write the count to the obstack. */
|
||||
pack_long (obstack_base (&data_obstack), long_type,
|
||||
mapping_data.file_count);
|
||||
pack_long ((gdb_byte *) obstack_base (&data_obstack),
|
||||
long_type, mapping_data.file_count);
|
||||
|
||||
/* Copy the filenames to the data obstack. */
|
||||
obstack_grow (&data_obstack, obstack_base (&filename_obstack),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue