Changeset 99604 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- May 4, 2023 1:53:06 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 157124
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp
r99523 r99604 757 757 RTPrintf(Appliance::tr("%2u: Guest memory specified with --memory: %RU32 MB\n"), 758 758 a, ulMemMB); 759 760 /* IVirtualSystemDescription guest memory size is in bytes. 761 It's alway stored in bytes in VSD according to the old internal agreement within the team */ 762 uint64_t ullMemBytes = (uint64_t)ulMemMB * _1M; 763 strOverride = Utf8StrFmt("%RU64", ullMemBytes); 759 764 bstrFinalValue = strOverride; 760 765 } … … 765 770 { 766 771 strOverride = aVBoxValues[a]; 767 uint64_t ullMemMB = strOverride.toUInt64() ;772 uint64_t ullMemMB = strOverride.toUInt64() / _1M; 768 773 RTPrintf(Appliance::tr("%2u: Guest memory: %RU64 MB\n (change with \"--vsys %u --memory <MB>\")\n"), 769 774 a, ullMemMB, i);
Note:
See TracChangeset
for help on using the changeset viewer.