Index: /trunk/src/VBox/Debugger/DBGCGdbRemoteStub.cpp
===================================================================
--- /trunk/src/VBox/Debugger/DBGCGdbRemoteStub.cpp	(revision 84629)
+++ /trunk/src/VBox/Debugger/DBGCGdbRemoteStub.cpp	(revision 84630)
@@ -111,5 +111,5 @@
     size_t                      offPktBuf;
     /** The size of the packet (minus the start, end characters and the checksum). */
-    uint32_t                    cbPkt;
+    size_t                      cbPkt;
     /** Pointer to the packet buffer data. */
     uint8_t                     *pbPktBuf;
@@ -1873,5 +1873,5 @@
 
         uint8_t uSum = 0;
-        for (uint32_t i = 1; i < pThis->cbPkt; i++)
+        for (size_t i = 1; i < pThis->cbPkt; i++)
             uSum += pThis->pbPktBuf[i];
 
