Changeset 85889 in vbox
- Timestamp:
- Aug 26, 2020 11:47:12 AM (4 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
include/VBox/vd.h (modified) (1 diff)
-
src/VBox/Frontends/VBoxManage/VBoxInternalManage.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vd.h
r85884 r85889 156 156 * partition will not be accessible to the guest. The size of the data area 157 157 * must still be set correctly. */ 158 c onst char*pszRawDevice;158 char *pszRawDevice; 159 159 /** Pointer to the partitioning info. NULL means this is a regular data 160 160 * area on disk, non-NULL denotes data which should be copied to the 161 161 * partition data overlay. */ 162 const void*pvPartitionData;162 void *pvPartitionData; 163 163 /** Offset where the data starts in this device. */ 164 164 uint64_t offStartInDevice; -
trunk/src/VBox/Frontends/VBoxManage/VBoxInternalManage.cpp
r85884 r85889 1729 1729 } 1730 1730 1731 pPartDesc->pszRawDevice = pszRawName;1731 pPartDesc->pszRawDevice = (char *)pszRawName; 1732 1732 pPartDesc->offStartInDevice = uStartOffset; 1733 1733 }
Note:
See TracChangeset
for help on using the changeset viewer.

