VirtualBox

Changeset 57007 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Jul 19, 2015 1:39:42 AM (9 years ago)
Author:
vboxsync
Message:

Storage: Error formatting fixes.

Location:
trunk/src/VBox/Storage
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Storage/VDI.cpp

    r54430 r57007  
    557557        {
    558558            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);
    560560            goto out;
    561561        }
  • trunk/src/VBox/Storage/VHDX.cpp

    r54430 r57007  
    12281228            rc = vdIfError(pImage->pIfError, VERR_NO_MEMORY, RT_SRC_POS,
    12291229                           "VHDX: Out of memory allocating memory for %u BAT entries of image \'%s\'",
    1230                            cBatEntries);
     1230                           cBatEntries, pImage->pszFilename);
    12311231    }
    12321232    else
  • trunk/src/VBox/Storage/VMDK.cpp

    r56754 r57007  
    10741074    if (RT_FAILURE(rc))
    10751075    {
    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);
    10771078        goto out;
    10781079    }
     
    10911092        if (RT_FAILURE(rc))
    10921093        {
    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);
    10941096            goto out;
    10951097        }
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette