diff options
author | David D. Zuhn <zoo@cygnus> | 1992-10-02 00:52:49 +0000 |
---|---|---|
committer | David D. Zuhn <zoo@cygnus> | 1992-10-02 00:52:49 +0000 |
commit | 2652a49c499dc28df9e7506162faaebc371f7ba7 (patch) | |
tree | 1395d346efb17814fc38dd2e5fa249194eb36a7e /bfd/seclet.c | |
parent | 93282e61398111d4b5da995f46cf5493dba47153 (diff) | |
download | gdb-2652a49c499dc28df9e7506162faaebc371f7ba7.zip gdb-2652a49c499dc28df9e7506162faaebc371f7ba7.tar.gz gdb-2652a49c499dc28df9e7506162faaebc371f7ba7.tar.bz2 |
avoid compiler warnings
Diffstat (limited to 'bfd/seclet.c')
-rw-r--r-- | bfd/seclet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/seclet.c b/bfd/seclet.c index c791dff..d95a844 100644 --- a/bfd/seclet.c +++ b/bfd/seclet.c @@ -83,7 +83,7 @@ DEFUN(rel,(abfd, seclet, output_section, data), && !(output_section->flags & SEC_NEVER_LOAD) && seclet->size) { - data = bfd_get_relocated_section_contents(abfd, seclet, data); + data = (PTR) bfd_get_relocated_section_contents(abfd, seclet, data); if(bfd_set_section_contents(abfd, output_section, data, |