Changeset 53073 in vbox for trunk/src/VBox
- Timestamp:
- Oct 16, 2014 9:09:09 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 96578
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
r52789 r53073 340 340 pThis->fu32AdditionsOk = VBOX_GUEST_INTERFACE_VERSION_OK(pThis->guestInfo.interfaceVersion); 341 341 342 LogRel(("Guest Additions information report: Interface = 0x%08X osType = 0x%08X\n", 343 pThis->guestInfo.interfaceVersion, pThis->guestInfo.osType)); 342 LogRel(("Guest Additions information report: Interface = 0x%08X osType = 0x%08X (%u-bit)\n", 343 pThis->guestInfo.interfaceVersion, pThis->guestInfo.osType, 344 (pThis->guestInfo.osType & VBOXOSTYPE_x64) ? 64 : 32)); 344 345 345 346 if (pThis->pDrv && pThis->pDrv->pfnUpdateGuestInfo) … … 3561 3562 if (pThis->fu32AdditionsOk) 3562 3563 { 3563 LogRel(("Guest Additions information report: additionsVersion = 0x%08X, osType = 0x%08X\n", 3564 pThis->guestInfo.interfaceVersion, pThis->guestInfo.osType)); 3564 LogRel(("Guest Additions information report: additionsVersion = 0x%08X, osType = 0x%08X (%u-bit)\n", 3565 pThis->guestInfo.interfaceVersion, pThis->guestInfo.osType, 3566 (pThis->guestInfo.osType & VBOXOSTYPE_x64) ? 64 : 32)); 3565 3567 if (pThis->pDrv) 3566 3568 {
Note:
See TracChangeset
for help on using the changeset viewer.