Changeset 11287 in vbox for trunk/src/VBox/Devices/Storage/VmdkHDDCore.cpp
- Timestamp:
- Aug 8, 2008 10:35:40 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/VmdkHDDCore.cpp
r11284 r11287 1371 1371 char *pszUuid; 1372 1372 1373 int rc = RTStrAPrintf(&pszUuid, "\"% Vuuid\"", pUuid);1373 int rc = RTStrAPrintf(&pszUuid, "\"%RTuuid\"", pUuid); 1374 1374 if (RT_FAILURE(rc)) 1375 1375 return rc; … … 4606 4606 rc = VERR_VDI_NOT_OPENED; 4607 4607 4608 LogFlowFunc(("returns %Rrc (% Vuuid)\n", rc, pUuid));4608 LogFlowFunc(("returns %Rrc (%RTuuid)\n", rc, pUuid)); 4609 4609 return rc; 4610 4610 } … … 4613 4613 static int vmdkSetUuid(void *pBackendData, PCRTUUID pUuid) 4614 4614 { 4615 LogFlowFunc(("pBackendData=%#p Uuid=% Vuuid\n", pBackendData, pUuid));4615 LogFlowFunc(("pBackendData=%#p Uuid=%RTuuid\n", pBackendData, pUuid)); 4616 4616 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData; 4617 4617 int rc; 4618 4618 4619 LogFlowFunc(("% Vuuid\n", pUuid));4619 LogFlowFunc(("%RTuuid\n", pUuid)); 4620 4620 Assert(pImage); 4621 4621 … … 4658 4658 rc = VERR_VDI_NOT_OPENED; 4659 4659 4660 LogFlowFunc(("returns %Rrc (% Vuuid)\n", rc, pUuid));4660 LogFlowFunc(("returns %Rrc (%RTuuid)\n", rc, pUuid)); 4661 4661 return rc; 4662 4662 } … … 4665 4665 static int vmdkSetModificationUuid(void *pBackendData, PCRTUUID pUuid) 4666 4666 { 4667 LogFlowFunc(("pBackendData=%#p Uuid=% Vuuid\n", pBackendData, pUuid));4667 LogFlowFunc(("pBackendData=%#p Uuid=%RTuuid\n", pBackendData, pUuid)); 4668 4668 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData; 4669 4669 int rc; … … 4709 4709 rc = VERR_VDI_NOT_OPENED; 4710 4710 4711 LogFlowFunc(("returns %Rrc (% Vuuid)\n", rc, pUuid));4711 LogFlowFunc(("returns %Rrc (%RTuuid)\n", rc, pUuid)); 4712 4712 return rc; 4713 4713 } … … 4716 4716 static int vmdkSetParentUuid(void *pBackendData, PCRTUUID pUuid) 4717 4717 { 4718 LogFlowFunc(("pBackendData=%#p Uuid=% Vuuid\n", pBackendData, pUuid));4718 LogFlowFunc(("pBackendData=%#p Uuid=%RTuuid\n", pBackendData, pUuid)); 4719 4719 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData; 4720 4720 int rc; … … 4760 4760 rc = VERR_VDI_NOT_OPENED; 4761 4761 4762 LogFlowFunc(("returns %Rrc (% Vuuid)\n", rc, pUuid));4762 LogFlowFunc(("returns %Rrc (%RTuuid)\n", rc, pUuid)); 4763 4763 return rc; 4764 4764 } … … 4767 4767 static int vmdkSetParentModificationUuid(void *pBackendData, PCRTUUID pUuid) 4768 4768 { 4769 LogFlowFunc(("pBackendData=%#p Uuid=% Vuuid\n", pBackendData, pUuid));4769 LogFlowFunc(("pBackendData=%#p Uuid=%RTuuid\n", pBackendData, pUuid)); 4770 4770 PVMDKIMAGE pImage = (PVMDKIMAGE)pBackendData; 4771 4771 int rc; … … 4806 4806 pImage->LCHSGeometry.cCylinders, pImage->LCHSGeometry.cHeads, pImage->LCHSGeometry.cSectors, 4807 4807 VMDK_BYTE2SECTOR(pImage->cbSize)); 4808 RTLogPrintf("Header: uuidCreation={% Vuuid}\n", &pImage->ImageUuid);4809 RTLogPrintf("Header: uuidModification={% Vuuid}\n", &pImage->ModificationUuid);4810 RTLogPrintf("Header: uuidParent={% Vuuid}\n", &pImage->ParentUuid);4811 RTLogPrintf("Header: uuidParentModification={% Vuuid}\n", &pImage->ParentModificationUuid);4808 RTLogPrintf("Header: uuidCreation={%RTuuid}\n", &pImage->ImageUuid); 4809 RTLogPrintf("Header: uuidModification={%RTuuid}\n", &pImage->ModificationUuid); 4810 RTLogPrintf("Header: uuidParent={%RTuuid}\n", &pImage->ParentUuid); 4811 RTLogPrintf("Header: uuidParentModification={%RTuuid}\n", &pImage->ParentModificationUuid); 4812 4812 } 4813 4813 }
Note:
See TracChangeset
for help on using the changeset viewer.