From 3dc97aa3fb8f274a944509a78b0abf8f317247d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 3 Jul 2009 08:56:59 +0000 Subject: [PATCH] * Fixed GCC2 build. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31383 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/debugger/debug_info/DwarfImageDebugInfo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/debugger/debug_info/DwarfImageDebugInfo.cpp b/src/apps/debugger/debug_info/DwarfImageDebugInfo.cpp index 5f2abe8806..4bb44425f7 100644 --- a/src/apps/debugger/debug_info/DwarfImageDebugInfo.cpp +++ b/src/apps/debugger/debug_info/DwarfImageDebugInfo.cpp @@ -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);