From 45b5d2f0396e5b4256918aa8c11b886ccc0f3e8b Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Fri, 6 Oct 1995 16:37:31 +0000 Subject: [PATCH] Fix typo in last change --- bfd/ChangeLog | 3 +++ bfd/coff-rs6000.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index f5c4ebf40d..5f0ae0949e 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 31c51d5c80..e7766ec1ad 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);