* actually print the image name if a symbol name could not be found

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23706 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2008-01-23 14:51:20 +00:00
parent 2d0687ae9e
commit 0644c0e333
1 changed files with 1 additions and 1 deletions

View File

@ -607,7 +607,7 @@ TeamDebugHandler::_LookupSymbolAddress(
} else {
// no symbol: image relative address
snprintf(buffer, bufferSize, "(%s + %#lx)", symbolName,
snprintf(buffer, bufferSize, "(%s + %#lx)", imageName,
(addr_t)address - (addr_t)baseAddress);
}