A tiny bit more debug information in case a module couldn't be loaded.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12330 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2005-04-12 06:59:19 +00:00
parent 955d763c86
commit 71ef877c9c

View File

@ -265,7 +265,7 @@ load_module_image(const char *path, module_image **_moduleImage)
image = load_kernel_add_on(path);
if (image < 0) {
dprintf("load_module_image failed: %s\n", strerror(image));
dprintf("load_module_image(%s) failed: %s\n", path, strerror(image));
return image;
}