From 81ccf71fa20b7c3be62d2676fed510b7578dd33f Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Fri, 5 Apr 2013 09:42:56 -0400 Subject: [PATCH] Fix x86-64 build. --- src/apps/debugger/debugger_interface/DebuggerInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/debugger/debugger_interface/DebuggerInterface.cpp b/src/apps/debugger/debugger_interface/DebuggerInterface.cpp index 7093a5041d..a2bb1c0476 100644 --- a/src/apps/debugger/debugger_interface/DebuggerInterface.cpp +++ b/src/apps/debugger/debugger_interface/DebuggerInterface.cpp @@ -525,7 +525,7 @@ DebuggerInterface::GetAreaInfos(BObjectList& infos) { // get the team's areas area_info areaInfo; - int32 cookie = 0; + ssize_t cookie = 0; while (get_next_area_info(fTeamID, &cookie, &areaInfo) == B_OK) { AreaInfo* info = new(std::nothrow) AreaInfo(fTeamID, areaInfo.area, areaInfo.name, (addr_t)areaInfo.address, areaInfo.size,