* Fixed GCC2 build.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31383 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2009-07-03 08:56:59 +00:00
parent 593fa6776a
commit 3dc97aa3fb
1 changed files with 2 additions and 2 deletions

View File

@ -229,8 +229,8 @@ printf(" %ld compilation units\n", fFile->CountCompilationUnits());
// get the source location
const char* directoryPath = NULL;
const char* fileName = NULL;
uint32 line = -1;
uint32 column = -1;
uint32 line = ~0U;
uint32 column = ~0U;
DwarfUtils::GetDeclarationLocation(fFile, subprogramEntry,
directoryPath, fileName, line, column);