Changeset 31345 in vbox
- Timestamp:
- Aug 3, 2010 10:13:16 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/Main/HostImpl.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/HostImpl.cpp
r31337 r31345 2047 2047 RTStrPrintf(pDrive->szDescription, sizeof(pDrive->szDescription), "%s %s", pszVendor, pszProduct); 2048 2048 RTStrCopy(pDrive->szRawDiskPath, sizeof(pDrive->szRawDiskPath), pszDevLinkPath); 2049 if (!*ppDrives) 2050 *ppDrives = pDrive; 2051 else 2052 (*ppDrives)->pNext = pDrive; 2049 if (*ppDrives) 2050 pDrive->pNext = *ppDrives; 2051 *ppDrives = pDrive; 2053 2052 } 2054 2053 }
Note:
See TracChangeset
for help on using the changeset viewer.

