From: Michael Sokolov Date: Sun, 11 Feb 2001 23:11:39 +0000 (+0000) Subject: * readelf.c (struct unw_aux_info): Remove const from the info member. X-Git-Tag: jimb_gnu_v3_branchpoint~218 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ecd0338944f6ad0220384419202f9ef1bd7f4b1d;p=platform%2Fupstream%2Fbinutils.git * readelf.c (struct unw_aux_info): Remove const from the info member. (process_unwind): Don't type-cast the third argument to the GET_DATA_ALLOC macro. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 045e11a..bbb6130 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,9 @@ +2001-02-11 Michael Sokolov + + * readelf.c (struct unw_aux_info): Remove const from the info member. + (process_unwind): Don't type-cast the third argument to the + GET_DATA_ALLOC macro. + 2001-02-11 Nick Clifton * readelf.c (dump_relocations): Free corrected allocated @@ -177,7 +183,7 @@ Mon Dec 11 14:30:21 MET 2000 Jan Hubicka 2000-11-28 Hans-Peter Nilsson - * MAINTAINERS: Add Jörn Rennecke and self as SH maintainers. + * MAINTAINERS: Add Jvrn Rennecke and self as SH maintainers. Change sourceware.cygnus.com to sources.redhat.com. Fix typo for "amongst". diff --git a/binutils/readelf.c b/binutils/readelf.c index 923403a..b0fdcc3 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -3099,7 +3099,7 @@ struct unw_aux_info } *table; /* Unwind table. */ unsigned long table_len; /* Length of unwind table. */ - const unsigned char * info; /* Unwind info. */ + unsigned char * info; /* Unwind info. */ unsigned long info_size; /* Size of unwind info. */ bfd_vma info_addr; /* starting address of unwind info. */ bfd_vma seg_base; /* Starting address of segment. */ @@ -3400,7 +3400,7 @@ process_unwind (file) { aux.info_size = sec->sh_size; aux.info_addr = sec->sh_addr; - GET_DATA_ALLOC (sec->sh_offset, aux.info_size, (char *) aux.info, + GET_DATA_ALLOC (sec->sh_offset, aux.info_size, aux.info, char *, "unwind info"); } }