Changeset 85215 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jul 11, 2020 1:30:59 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139192
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestOSTypeImpl.h
r82968 r85215 98 98 const uint32_t mVRAMSize; 99 99 const uint64_t mHDDSize; 100 const uint32_t mMonitorCount;101 100 const NetworkAdapterType_T mNetworkAdapterType; 102 101 const uint32_t mNumSerialEnabled; -
trunk/src/VBox/Main/src-server/GuestOSTypeImpl.cpp
r82968 r85215 31 31 , mGraphicsControllerType(GraphicsControllerType_Null) 32 32 , mVRAMSize(0) 33 , mHDDSize(0), mMonitorCount(0)33 , mHDDSize(0), 34 34 , mNetworkAdapterType(NetworkAdapterType_Am79C973) 35 35 , mNumSerialEnabled(0) … … 235 235 { 236 236 /* mHDDSize is constant during life time, no need to lock */ 237 *aHDDSize = mHDDSize;237 *aHDDSize = (LONG64)mHDDSize; 238 238 239 239 return S_OK;
Note:
See TracChangeset
for help on using the changeset viewer.