diff options
author | Nick Clifton <nickc@redhat.com> | 2002-03-14 09:41:54 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-03-14 09:41:54 +0000 |
commit | c295a5111b2c1c8caf535cf79be64768195f3e04 (patch) | |
tree | 21ae6a029855df3d61f1ca65cc3ff2f0edff6d12 /bfd/mmo.c | |
parent | 287ac7896d1488049118e56f76d1ee5b0336c105 (diff) | |
download | gdb-c295a5111b2c1c8caf535cf79be64768195f3e04.zip gdb-c295a5111b2c1c8caf535cf79be64768195f3e04.tar.gz gdb-c295a5111b2c1c8caf535cf79be64768195f3e04.tar.bz2 |
Fix compile time failure
Diffstat (limited to 'bfd/mmo.c')
-rw-r--r-- | bfd/mmo.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |