diff options
author | Alan Modra <amodra@gmail.com> | 2005-02-22 12:58:35 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2005-02-22 12:58:35 +0000 |
commit | b7712f8d34a62b72196017c71099138cd8eccf7a (patch) | |
tree | f1567847e97db556d3ebd7edd354af61ad6a2240 /gas/config | |
parent | dc3c06c291951d9aca329aa6a69fc3443f08f0b1 (diff) | |
download | gdb-b7712f8d34a62b72196017c71099138cd8eccf7a.zip gdb-b7712f8d34a62b72196017c71099138cd8eccf7a.tar.gz gdb-b7712f8d34a62b72196017c71099138cd8eccf7a.tar.bz2 |
* read.c: Warning fixes.
* config/obj-elf.c: Likewise.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/obj-elf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c index c7907b3..37bb27f 100644 --- a/gas/config/obj-elf.c +++ b/gas/config/obj-elf.c @@ -1936,7 +1936,7 @@ elf_frob_file (void) size = 4 * (list.elt_count[i] + 1); bfd_set_section_size (stdoutput, s, size); - s->contents = frag_more (size); + s->contents = (unsigned char *) frag_more (size); frag_now->fr_fix = frag_now_fix_octets (); } |