* readelf.c (process_unwind): Remove const specifier.
This commit is contained in:
parent
062e23589d
commit
78f4a3f728
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2001-05-07 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
|
||||
|
||||
* readelf.c (process_unwind): Remove const specifier.
|
||||
|
||||
2001-04-27 Michal Svec <rebel@atrey.karlin.mff.cuni.cz>
|
||||
|
||||
* strings.c (isgraphic): Do not use isascii() unless it is needed
|
||||
|
|
|
@ -3434,7 +3434,7 @@ process_unwind (file)
|
|||
strsec = section_headers + sec->sh_link;
|
||||
aux.strtab_size = strsec->sh_size;
|
||||
GET_DATA_ALLOC (strsec->sh_offset, aux.strtab_size,
|
||||
aux.strtab, const char *, "string table");
|
||||
aux.strtab, char *, "string table");
|
||||
}
|
||||
else if (sec->sh_type == SHT_IA_64_UNWIND)
|
||||
unwsec = sec;
|
||||
|
|
Loading…
Add table
Reference in a new issue