aboutsummaryrefslogtreecommitdiffstats
path: root/bsd-user
diff options
context:
space:
mode:
authorPaul Bolle <pebolle@tiscali.nl>2009-10-04 14:49:54 +0200
committerAurelien Jarno <aurelien@aurel32.net>2009-10-04 15:02:44 +0200
commitb7d43d03f956265aa8599fa11b3c93831934afce (patch)
tree4020394c724c9834d6485626e39f6308bf31d8a4 /bsd-user
parentc4c270e22762da810e4241d53db2941c8a289e5d (diff)
bsd-user: fix "#if 0"'d printf()
Make an "#if 0"'d printf() in load_elf_binary() reflect what the actual code does (see commit 3bc0bdcaadef1100ce2413af818d9c8e2f6319fc). Signed-off-by: Paul Bolle <pebolle@tiscali.nl> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'bsd-user')
-rw-r--r--bsd-user/elfload.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsd-user/elfload.c b/bsd-user/elfload.c
index 33ddcc484..8ac14b795 100644
--- a/bsd-user/elfload.c
+++ b/bsd-user/elfload.c
@@ -1246,7 +1246,7 @@ int load_elf_binary(struct linux_binprm * bprm, struct target_pt_regs * regs,
}
#if 0
- printf("Using ELF interpreter %s\n", elf_interpreter);
+ printf("Using ELF interpreter %s\n", path(elf_interpreter));
#endif
if (retval >= 0) {
retval = open(path(elf_interpreter), O_RDONLY);