mirror of https://github.com/xqemu/xqemu.git
linux-user: fix "#if 0"'d printf()
Make an "#if 0"'d printf() in load_elf_binary(), probably left to aid in debugging, reflect what the actual code does. The current printf() will only confuse those who "#if 1" it (it certainly confused me enough to write this trivial patch). Signed-off-by: Paul Bolle <pebolle@tiscali.nl> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
ee682d27a5
commit
3bc0bdcaad
|
@ -1454,7 +1454,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);
|
||||
|
|
Loading…
Reference in New Issue