- Timestamp:
- Jun 5, 2012 5:10:42 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r40548 r41584 255 255 CHECK_ERROR_RET(bwCtrl, GetAllBandwidthGroups(ComSafeArrayAsOutParam(bwGroups)), rc); 256 256 257 if (bwGroups.size() && details != VMINFO_MACHINEREADABLE) 258 RTPrintf("\n\n"); 257 259 for (size_t i = 0; i < bwGroups.size(); i++) 258 260 { … … 271 273 RTPrintf("Name: '%ls', Type: %s, Limit: %d Mbytes/sec\n", strName.raw(), pszType, cMaxMbPerSec); 272 274 } 273 if (details != VMINFO_MACHINEREADABLE && bwGroups.size() != 0)274 RTPrintf( "\n");275 if (details != VMINFO_MACHINEREADABLE) 276 RTPrintf(bwGroups.size() != 0 ? "\n" : "<none>\n\n"); 275 277 276 278 return rc; … … 1924 1926 */ 1925 1927 if (details != VMINFO_MACHINEREADABLE) 1926 RTPrintf("Bandwidth groups: \n\n");1928 RTPrintf("Bandwidth groups: "); 1927 1929 { 1928 1930 ComPtr<IBandwidthControl> bwCtrl;
Note:
See TracChangeset
for help on using the changeset viewer.