Changeset 30224 in vbox
- Timestamp:
- Jun 16, 2010 1:55:46 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 62710
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Input/UsbKbd.cpp
r29749 r30224 589 589 590 590 pUrb->enmStatus = VUSBSTATUS_OK; 591 pUrb->cbData = cbData;591 pUrb->cbData = (uint32_t)cbData; 592 592 593 593 usbHidLinkDone(pThis, pUrb); -
trunk/src/VBox/Devices/Input/UsbMouse.cpp
r28800 r30224 633 633 634 634 pUrb->enmStatus = VUSBSTATUS_OK; 635 pUrb->cbData = cbData;635 pUrb->cbData = (uint32_t)cbData; 636 636 637 637 usbHidLinkDone(pThis, pUrb); -
trunk/src/VBox/Devices/Storage/DevAHCI.cpp
r30111 r30224 4829 4829 { 4830 4830 unsigned cSGEntry = 0; 4831 int cbCopied = 0;4831 size_t cbCopied = 0; 4832 4832 PRTSGSEG pSGEntry = &pAhciPortTaskState->pSGListHead[cSGEntry]; 4833 4833 uint8_t *pu8Buf = (uint8_t *)pvBuf;
Note:
See TracChangeset
for help on using the changeset viewer.