diff options
author | Alan Modra <amodra@bigpond.net.au> | 2000-05-01 05:02:57 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2000-05-01 05:02:57 +0000 |
commit | 3a6c8f4a37238f3d7e3cef0e9730a7af7f063d5b (patch) | |
tree | 56fde102b369ff4fd73dc2140c386219c95d011e /bfd/vms.c | |
parent | 800e0711a60446c111a59e8305ac5c0ef4cf0452 (diff) | |
download | gdb-3a6c8f4a37238f3d7e3cef0e9730a7af7f063d5b.tar.gz |
Fix "incompatible types in return" gcc error.
Diffstat (limited to 'bfd/vms.c')
-rw-r--r-- | bfd/vms.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |