- Timestamp:
- Oct 14, 2021 11:59:23 AM (3 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/QMTranslator.h
r91718 r91720 39 39 * Will be set to NULL if @a pszSource is returned. 40 40 * @param pszDisamb Disambiguationg comment, empty by default 41 * @param iNum Plural form indicator.41 * @param aNum Plural form indicator. 42 42 * 43 43 * @returns Pointer to a translation (UTF-8 encoding), source string on failure. -
trunk/src/VBox/Main/src-all/ExtPackUtil.cpp
r91718 r91720 337 337 /* Check the file size. */ 338 338 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), 340 340 ObjInfo.cbObject); 341 341 size_t const cbFile = (size_t)ObjInfo.cbObject; … … 950 950 rc = vboxExtPackReturnError(VERR_OUT_OF_RANGE, pszError, cbError, 951 951 ExtPackUtil::tr("Standard member '%s' is too large: %'RU64 bytes (max 1 MB)", "", 952 ObjInfo.cbObject),952 (size_t)ObjInfo.cbObject), 953 953 pszAdjName, (uint64_t)ObjInfo.cbObject); 954 954 else -
trunk/src/VBox/Main/src-server/ApplianceImplImport.cpp
r91718 r91720 3048 3048 else if (RTAsn1OctetString_IsPresent(&pSignedData->ContentInfo.Content)) 3049 3049 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), 3051 3051 pSignedData->ContentInfo.Content.Asn1Core.cb); 3052 3052 else if (pSignedData->SignerInfos.cItems == 0)
Note:
See TracChangeset
for help on using the changeset viewer.