Tuned message in case debug command "ls" fails.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7884 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-06-10 01:47:44 +00:00
parent 6f09e38dea
commit edfcb58323
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ dump_address_info(int argc, char **argv)
if (elf_lookup_symbol_address(address, NULL, &symbol, &imageName, &exactMatch) == B_OK)
dprintf("%p = %s (%s)%s\n", (void *)address, symbol, imageName, exactMatch ? "" : " (nearest)");
else
dprintf("lookup failed\n");
dprintf("There is no image loaded at this address!\n");
return 0;
}