From 8951a74bcff2c3df40b32a60f081369e2c04453d Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Thu, 14 Mar 2002 09:41:54 +0000 Subject: Fix compile time failure --- bfd/ChangeLog | 4 ++++ bfd/mmo.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'bfd') diff --git a/bfd/ChangeLog b/bfd/ChangeLog index ca7dfbd76eb..d4e3a3b2cc5 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 31ba035645e..bc3b1475294 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; -- cgit v1.2.1