diff --git a/src/system/boot/loader/elf.cpp b/src/system/boot/loader/elf.cpp
index 7616e89..016a624 100644
a
|
b
|
ELFLoader<Class>::Resolve(ImageType* image, SymType* symbol,
|
425 | 425 | case SHN_UNDEF: |
426 | 426 | // Since we do that only for the kernel, there shouldn't be |
427 | 427 | // undefined symbols. |
428 | | return B_MISSING_SYMBOL; |
| 428 | dprintf("missing symbol: %s\n", |
| 429 | image->debug_string_table + symbol->st_name); |
| 430 | return B_OK; |
429 | 431 | case SHN_ABS: |
430 | 432 | *symbolAddress = symbol->st_value; |
431 | 433 | return B_NO_ERROR; |