* More specific error message when relocating fails.

* Whitespace cleanup.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27031 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2008-08-18 11:03:50 +00:00
parent a3901de208
commit 320bd2bd5a

View File

@ -1154,7 +1154,8 @@ relocate_image(image_t *rootImage, image_t *image)
{
status_t status = arch_relocate_image(rootImage, image);
if (status < B_OK) {
FATAL("troubles relocating: 0x%lx (image: %s)\n", status, image->name);
FATAL("troubles relocating: 0x%lx (image: %s, %s)\n", status,
image->path, image->name);
return status;
}