Changeset 57007 in vbox for trunk/src/VBox
- Timestamp:
- Jul 19, 2015 1:39:42 AM (9 years ago)
- Location:
- trunk/src/VBox/Storage
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/VDI.cpp
r54430 r57007 557 557 { 558 558 rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, 559 N_("VDI: Getting data alignment for '%s' failed (%Rrc)"), pImage->pszFilename );559 N_("VDI: Getting data alignment for '%s' failed (%Rrc)"), pImage->pszFilename, rc); 560 560 goto out; 561 561 } -
trunk/src/VBox/Storage/VHDX.cpp
r54430 r57007 1228 1228 rc = vdIfError(pImage->pIfError, VERR_NO_MEMORY, RT_SRC_POS, 1229 1229 "VHDX: Out of memory allocating memory for %u BAT entries of image \'%s\'", 1230 cBatEntries );1230 cBatEntries, pImage->pszFilename); 1231 1231 } 1232 1232 else -
trunk/src/VBox/Storage/VMDK.cpp
r56754 r57007 1074 1074 if (RT_FAILURE(rc)) 1075 1075 { 1076 rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not read grain directory in '%s': %Rrc"), pExtent->pszFullname); 1076 rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, 1077 N_("VMDK: could not read grain directory in '%s': %Rrc"), pExtent->pszFullname, rc); 1077 1078 goto out; 1078 1079 } … … 1091 1092 if (RT_FAILURE(rc)) 1092 1093 { 1093 rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, N_("VMDK: could not read redundant grain directory in '%s'"), pExtent->pszFullname); 1094 rc = vdIfError(pImage->pIfError, rc, RT_SRC_POS, 1095 N_("VMDK: could not read redundant grain directory in '%s'"), pExtent->pszFullname); 1094 1096 goto out; 1095 1097 }
Note:
See TracChangeset
for help on using the changeset viewer.