diff options
author | Jerome Guitton <guitton@adacore.com> | 2004-06-17 11:55:02 +0000 |
---|---|---|
committer | Jerome Guitton <guitton@adacore.com> | 2004-06-17 11:55:02 +0000 |
commit | 64dd278262396adfee0a8b241f6d0484a49567d5 (patch) | |
tree | cb8b95ada5d449b49b63d6f1567c4caadad6a0a8 /bfd/cache.c | |
parent | 3dbff2b65af97ca2786af3ea5fd15b45c3b7c76a (diff) | |
download | gdb-64dd278262396adfee0a8b241f6d0484a49567d5.tar.gz |
cache.c (bfd_cache_close_all): Add missing return statement.
Diffstat (limited to 'bfd/cache.c')
-rw-r--r-- | bfd/cache.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bfd/cache.c b/bfd/cache.c index 63d4d786aea..0d6529b209f 100644 --- a/bfd/cache.c +++ b/bfd/cache.c @@ -366,6 +366,8 @@ bfd_cache_close_all () while (bfd_last_cache != NULL) ret &= bfd_cache_close (bfd_last_cache); + + return ret; } /* |