diff options
-rw-r--r-- | ldso/ldso/dl-elf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ldso/ldso/dl-elf.c b/ldso/ldso/dl-elf.c index 2dda6e5da..80c8fe438 100644 --- a/ldso/ldso/dl-elf.c +++ b/ldso/ldso/dl-elf.c @@ -51,8 +51,7 @@ int _dl_map_cache(void) return 0; if (_dl_stat(LDSO_CACHE, &st) - || (fd = _dl_open(LDSO_CACHE, O_RDONLY, 0)) < 0) { - _dl_dprintf(2, "%s: can't open cache '%s'\n", _dl_progname, LDSO_CACHE); + || (fd = _dl_open(LDSO_CACHE, O_RDONLY, 0)) < 0) { _dl_cache_addr = (caddr_t) - 1; /* so we won't try again */ return -1; } |