Print 'Symbol not found' as a debug trace instead
This commit is contained in:
parent
480b65d4c2
commit
eb231245ab
@ -351,7 +351,7 @@ static int object_relocate(elf_t * object) {
|
|||||||
if (symname && hashmap_has(dumb_symbol_table, symname)) {
|
if (symname && hashmap_has(dumb_symbol_table, symname)) {
|
||||||
x = (uintptr_t)hashmap_get(dumb_symbol_table, symname);
|
x = (uintptr_t)hashmap_get(dumb_symbol_table, symname);
|
||||||
} else {
|
} else {
|
||||||
fprintf(stderr, "Symbol not found: %s\n", symname);
|
TRACE_LD("Symbol not found: %s", symname);
|
||||||
x = 0x0;
|
x = 0x0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user