From: Alan Modra Date: Mon, 1 May 2000 05:02:57 +0000 (+0000) Subject: Fix "incompatible types in return" gcc error. X-Git-Tag: readline-pre-41-import~620 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=01fff6e2f4aeb41d6f617bb95ad4df0d9a52ef7f;p=thirdparty%2Fbinutils-gdb.git Fix "incompatible types in return" gcc error. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 97892a52b97..4cf7bde3b62 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,6 +1,7 @@ 2000-05-01 Alan Modra * coff-sh.c (bfd_coff_small_swap_table): Fix Fri Apr 28 change. + * vms.c (vms_openr_next_archived_file): Return NULL. Fri Apr 28 21:34:44 2000 Clinton Popetz diff --git a/bfd/vms.c b/bfd/vms.c index f0ea63ff92d..5f91ba42037 100644 --- a/bfd/vms.c +++ b/bfd/vms.c @@ -1,6 +1,6 @@ /* vms.c -- BFD back-end for VAX (openVMS/VAX) and EVAX (openVMS/Alpha) files. - Copyright 1996, 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright 1996, 97, 98, 99, 2000 Free Software Foundation, Inc. Written by Klaus K"ampf (kkaempf@rmi.de) @@ -1045,7 +1045,7 @@ vms_openr_next_archived_file (arch, prev) #if VMS_DEBUG vms_debug (1, "vms_openr_next_archived_file(%p, %p)\n", arch, prev); #endif - return false; + return NULL; }