* fixed typecast error due to typo after r29795

git-svn-id: trunk@29796 -
This commit is contained in:
nickysn 2015-02-22 22:02:40 +00:00
parent 0a02da23f4
commit 79118e531f

View File

@ -270,7 +270,7 @@ var
U32Value: UInt32;
begin
GetIntRegister := GetIntRegister(RegName, U32Value);
Value := UInt32(U32Value);
Value := Int32(U32Value);
end;
function TGDBController.BreakpointInsert(const location: string; BreakpointFlags: TBreakpointFlags): LongInt;