projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c4c270e
)
bsd-user: fix "#if 0"'d printf()
author
Paul Bolle
<pebolle@tiscali.nl>
Sun, 4 Oct 2009 12:49:54 +0000
(14:49 +0200)
committer
Aurelien Jarno
<aurelien@aurel32.net>
Sun, 4 Oct 2009 13:02:44 +0000
(15:02 +0200)
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>
bsd-user/elfload.c
patch
|
blob
|
history
diff --git
a/bsd-user/elfload.c
b/bsd-user/elfload.c
index 33ddcc4840472689b589b8c42e1e3916baaa3013..8ac14b795e0accd04b7f18766a1e9ea3939fd3e3 100644
(file)
--- 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);