VirtualBox

Changeset 67976 in vbox


Ignore:
Timestamp:
Jul 14, 2017 2:36:12 PM (7 years ago)
Author:
vboxsync
Message:

bugref:8877: VirtualKD: build fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Misc/VirtualKD.cpp

    r67973 r67976  
    112112            return VINF_SUCCESS;
    113113
    114         size_t cbData = RT_MIN(RequestHeader.cbData, sizeof(pThis->abCmdBody));
     114        unsigned cbData = RT_MIN(RequestHeader.cbData, sizeof(pThis->abCmdBody));
    115115        rc = PDMDevHlpPhysRead(pDevIns, (RTGCPHYS)(u32 + sizeof(RequestHeader)), pThis->abCmdBody, cbData);
    116116        if (!RT_SUCCESS(rc))
     
    118118
    119119        char *pReply = NULL;
    120         unsigned cbReply;
    121         cbReply = pThis->pKDClient->OnRequest(pThis->abCmdBody, cbData, &pReply);
     120        unsigned cbReply = pThis->pKDClient->OnRequest(pThis->abCmdBody, cbData, &pReply);
    122121
    123122        if (!pReply)
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette