Browse Source

* fixed typecast error due to typo after r29795

git-svn-id: trunk@29796 -
nickysn 10 years ago
parent
commit
79118e531f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ide/gdbmicon.pas

+ 1 - 1
ide/gdbmicon.pas

@@ -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;