From d595bbf03cfce94c987e392d92d6bbb18bcd3b84 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Thu, 14 Mar 2002 09:41:54 +0000 Subject: [PATCH] Fix compile time failure --- bfd/ChangeLog | 4 ++++ bfd/mmo.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index ca7dfbd76..d4e3a3b2c 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2002-03-14 Nick Clifton + + * mmo.c (mmo_get_loc): Return NULL rather than false. + 2002-03-13 Nick Clifton * po/fr.po: Updated version. diff --git a/bfd/mmo.c b/bfd/mmo.c index 31ba03564..bc3b14752 100644 --- a/bfd/mmo.c +++ b/bfd/mmo.c @@ -1523,7 +1523,7 @@ mmo_get_loc (sec, vma, size) entry = (mmo_data_list_type *) bfd_zalloc (sec->owner, sizeof (mmo_data_list_type) + allocated_size); if (entry == NULL) - return false; + return NULL; entry->where = vma; entry->size = size; entry->allocated_size = allocated_size; -- 2.11.4.GIT