diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-12-12 12:15:04 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-12-12 12:15:04 +0000 |
commit | 3e7394c25f0869691e662685abb18492ff09d827 (patch) | |
tree | 90142cadeee3726a9212ef27aeb63770ba636042 /utils | |
parent | 22fdfe080822178e87f890f71df9248624bc27e7 (diff) | |
download | uClibc-alpine-3e7394c25f0869691e662685abb18492ff09d827.tar.bz2 uClibc-alpine-3e7394c25f0869691e662685abb18492ff09d827.tar.xz |
- fix compilation of __LDSO_CACHE_SUPPORT__
s/dprintf(2/fprintf(stderr/g
Diffstat (limited to 'utils')
-rw-r--r-- | utils/ldd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/ldd.c b/utils/ldd.c index e0112924d..65aeb31fb 100644 --- a/utils/ldd.c +++ b/utils/ldd.c @@ -287,7 +287,7 @@ int map_cache(void) if (stat(LDSO_CACHE, &st) || (fd = open(LDSO_CACHE, O_RDONLY, 0)) < 0) { - dprintf(2, "ldd: can't open cache '%s'\n", LDSO_CACHE); + fprintf(stderr, "ldd: can't open cache '%s'\n", LDSO_CACHE); cache_addr = (caddr_t) - 1; /* so we won't try again */ return -1; } @@ -296,7 +296,7 @@ int map_cache(void) cache_addr = (caddr_t) mmap(0, cache_size, PROT_READ, MAP_SHARED, fd, 0); close(fd); if (cache_addr == MAP_FAILED) { - dprintf(2, "ldd: can't map cache '%s'\n", LDSO_CACHE); + fprintf(stderr, "ldd: can't map cache '%s'\n", LDSO_CACHE); return -1; } @@ -309,7 +309,7 @@ int map_cache(void) (sizeof(header_t) + header->nlibs * sizeof(libentry_t)) || cache_addr[cache_size - 1] != '\0') { - dprintf(2, "ldd: cache '%s' is corrupt\n", LDSO_CACHE); + fprintf(stderr, "ldd: cache '%s' is corrupt\n", LDSO_CACHE); goto fail; } @@ -321,7 +321,7 @@ int map_cache(void) if (libent[i].sooffset >= strtabsize || libent[i].liboffset >= strtabsize) { - dprintf(2, "ldd: cache '%s' is corrupt\n", LDSO_CACHE); + fprintf(stderr, "ldd: cache '%s' is corrupt\n", LDSO_CACHE); goto fail; } } |