Changeset 85245 in vbox
- Timestamp:
- Jul 11, 2020 11:07:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/PCIDeviceAttachmentImpl.cpp
r82968 r85245 94 94 const settings::HostPCIDeviceAttachment &hpda) 95 95 { 96 return init(aParent, hpda.strDeviceName, hpda.uHostAddress, hpda.uGuestAddress, TRUE); 96 /** @todo r=bird: Inconsistent signed/unsigned crap. */ 97 return init(aParent, hpda.strDeviceName, (LONG)hpda.uHostAddress, (LONG)hpda.uGuestAddress, TRUE); 97 98 } 98 99 … … 101 102 { 102 103 Assert(m); 103 data.uHostAddress = m->HostAddress; 104 data.uGuestAddress = m->GuestAddress; 104 /** @todo r=bird: Inconsistent signed/unsigned crap. */ 105 data.uHostAddress = (uint32_t)m->HostAddress; 106 data.uGuestAddress = (uint32_t)m->GuestAddress; 105 107 data.strDeviceName = m->DevName; 106 108
Note:
See TracChangeset
for help on using the changeset viewer.