Changeset 97536 in vbox
- Timestamp:
- Nov 14, 2022 5:52:27 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154565
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp
r97533 r97536 754 754 if (VINF_SUCCESS == strOverride.toInt(ulMemMB)) 755 755 { 756 /* 'VBoxManage import --memory' size is in megabytes */ 757 RTPrintf(Appliance::tr("%2u: Guest memory specified with --memory: %RU32 MB\n"), 758 a, ulMemMB); 759 760 /* IVirtualSystemDescription guest memory size is in bytes */ 761 uint64_t ullMemBytes = (uint64_t)ulMemMB * _1M; 762 strOverride = Utf8StrFmt("%RU64", ullMemBytes); 756 763 bstrFinalValue = strOverride; 757 RTPrintf(Appliance::tr("%2u: Guest memory specified with --memory: %ls MB\n"),758 a, bstrFinalValue.raw());759 764 } 760 765 else
Note:
See TracChangeset
for help on using the changeset viewer.