From: Michael Meissner Date: Fri, 6 Oct 1995 16:37:31 +0000 (+0000) Subject: Fix typo in last change X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=45b5d2f0396e5b4256918aa8c11b886ccc0f3e8b;p=binutils-gdb.git Fix typo in last change --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index f5c4ebf40dd..5f0ae0949e2 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,8 @@ Fri Oct 6 12:24:47 1995 Michael Meissner + * coff-rs6000.c (xcoff_write_archive_contents): Return false, not + NULL. + * config.bfd (powerpc{,le}-{elf,sysv4,eabi,solaris2}): Add NT, and Mac object file formats. diff --git a/bfd/coff-rs6000.c b/bfd/coff-rs6000.c index 31c51d5c80b..e7766ec1ad7 100644 --- a/bfd/coff-rs6000.c +++ b/bfd/coff-rs6000.c @@ -1033,7 +1033,7 @@ xcoff_write_archive_contents (abfd) if (stat (bfd_get_filename (sub), &s) != 0) { bfd_set_error (bfd_error_system_call); - return NULL; + return false; } sprintf (ahdrp->size, "%ld", (long) s.st_size);