summaryrefslogtreecommitdiff
path: root/ldso
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2014-09-04 13:21:23 +0200
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2014-09-04 13:24:34 +0200
commitb212e3804fb155cb418852dd70abad9a3d2354cc (patch)
tree29c07e6929db2c7c29f5021dc461119607acf5c9 /ldso
parentbc23c6440d34d85c8e6bb04656beb233bba47cb8 (diff)
ldso: Fix compile-error on noMMU
Thanks to Waldemar Brodkorb for noticing! Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'ldso')
-rw-r--r--ldso/ldso/dl-elf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/ldso/dl-elf.c b/ldso/ldso/dl-elf.c
index 1b06bc172..54501d143 100644
--- a/ldso/ldso/dl-elf.c
+++ b/ldso/ldso/dl-elf.c
@@ -728,7 +728,7 @@ struct elf_resolve *_dl_load_elf_shared_library(unsigned rflags,
void *new_addr;
new_addr = map_writeable (infile, ppnt, piclib, flags, libaddr);
if (!new_addr) {
- _dl_dprintf(_dl_debug_file, "Can't modify %s's text section.",
+ _dl_dprintf(2, "Can't modify %s's text section.",
libname);
_dl_exit(1);
}