summaryrefslogtreecommitdiff
path: root/ldso
diff options
context:
space:
mode:
Diffstat (limited to 'ldso')
-rw-r--r--ldso/util/ldd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldso/util/ldd.c b/ldso/util/ldd.c
index 951c839fb..7fdeaf5b0 100644
--- a/ldso/util/ldd.c
+++ b/ldso/util/ldd.c
@@ -535,10 +535,10 @@ int main( int argc, char** argv)
}
for (cur = lib_list; cur; cur=cur->next) {
got_em_all=1;
- printf("\t%s => %s\n", cur->name, cur->path);
+ printf("\t%s => %s (0x00000000)\n", cur->name, cur->path);
}
if (interp_dir && got_em_all==1)
- printf("\t%s => %s\n", interp, interp);
+ printf("\t%s => %s (0x00000000)\n", interp, interp);
if (got_em_all==0)
printf("\tnot a dynamic executable\n");
}