summaryrefslogtreecommitdiff
path: root/bfd/aix5ppc-core.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2005-04-18 12:10:57 +0000
committerNick Clifton <nickc@redhat.com>2005-04-18 12:10:57 +0000
commit9a39eb813bb196bbc4c40f93adba92665ade0591 (patch)
treee198196a77a4f0b8b8f92f1f8640428515fc20d2 /bfd/aix5ppc-core.c
parentd78eb478e0bfba18d84d4d5a49918ea237a4d825 (diff)
downloadbinutils-redhat-9a39eb813bb196bbc4c40f93adba92665ade0591.tar.gz
(xcoff64_core_p): Fix compile time warning assigning a value to return_value.
Diffstat (limited to 'bfd/aix5ppc-core.c')
-rw-r--r--bfd/aix5ppc-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/aix5ppc-core.c b/bfd/aix5ppc-core.c
index be999bc887..adf081fa9a 100644
--- a/bfd/aix5ppc-core.c
+++ b/bfd/aix5ppc-core.c
@@ -220,7 +220,7 @@ xcoff64_core_p (abfd)
}
}
- return_value = abfd->xvec; /* This is garbage for now. */
+ return_value = (bfd_target *) abfd->xvec; /* This is garbage for now. */
xcoff64_core_p_error:
if (bfd_get_error () != bfd_error_system_call)