VirtualBox

Changeset 91720 in vbox for trunk/src


Ignore:
Timestamp:
Oct 14, 2021 11:59:23 AM (3 years ago)
Author:
vboxsync
Message:

Main: bugref:1909: Fixed compilation issues

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

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/QMTranslator.h

    r91718 r91720  
    3939     *                          Will be set to NULL if @a pszSource is returned.
    4040     * @param   pszDisamb       Disambiguationg comment, empty by default
    41      * @param   iNum            Plural form indicator.
     41     * @param   aNum            Plural form indicator.
    4242     *
    4343     * @returns Pointer to a translation (UTF-8 encoding), source string on failure.
  • trunk/src/VBox/Main/src-all/ExtPackUtil.cpp

    r91718 r91720  
    337337    /* Check the file size. */
    338338    if (ObjInfo.cbObject > _1M || ObjInfo.cbObject < 0)
    339         return &(new RTCString)->printf(ExtPackUtil::tr("The XML file is too large (%'RU64 bytes)", "", ObjInfo.cbObject),
     339        return &(new RTCString)->printf(ExtPackUtil::tr("The XML file is too large (%'RU64 bytes)", "", (size_t)ObjInfo.cbObject),
    340340                                        ObjInfo.cbObject);
    341341    size_t const cbFile = (size_t)ObjInfo.cbObject;
     
    950950                rc = vboxExtPackReturnError(VERR_OUT_OF_RANGE, pszError, cbError,
    951951                                            ExtPackUtil::tr("Standard member '%s' is too large: %'RU64 bytes (max 1 MB)", "",
    952                                                             ObjInfo.cbObject),
     952                                                            (size_t)ObjInfo.cbObject),
    953953                                            pszAdjName, (uint64_t)ObjInfo.cbObject);
    954954            else
  • trunk/src/VBox/Main/src-server/ApplianceImplImport.cpp

    r91718 r91720  
    30483048    else if (RTAsn1OctetString_IsPresent(&pSignedData->ContentInfo.Content))
    30493049        i_addWarning(tr("Invalid PKCS#7/CMS data: embedded (%u bytes), expected external","",
    3050                         (int)pSignedData->ContentInfo.Content.Asn1Core.cb),
     3050                        pSignedData->ContentInfo.Content.Asn1Core.cb),
    30513051                     pSignedData->ContentInfo.Content.Asn1Core.cb);
    30523052    else if (pSignedData->SignerInfos.cItems == 0)
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