From: Nick Clifton Date: Mon, 18 Apr 2005 12:10:57 +0000 (+0000) Subject: (xcoff64_core_p): Fix compile time warning assigning a value to return_value. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7cefacd39796c75e82cb3f3be53847d66acd8d41;p=binutils-gdb.git (xcoff64_core_p): Fix compile time warning assigning a value to return_value. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 9b20c92fa17..ac1af14885f 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2005-04-18 Nick Clifton + + * aix5ppc-core.c (xcoff64_core_p): Fix compile time warning + assigning a value to return_value. + 2005-04-17 H.J. Lu PR 855 diff --git a/bfd/aix5ppc-core.c b/bfd/aix5ppc-core.c index be999bc8879..adf081fa9a6 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)