Changeset 76272 in vbox for trunk/src/VBox
- Timestamp:
- Dec 18, 2018 5:49:18 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ImageMounter/vboximg-mount/vboximgMedia.cpp
r76271 r76272 203 203 static void displayMediumInfo(MEDIUMINFO *pInfo, int nestLevel, bool fLast) 204 204 { 205 if (nestLevel > 20) 206 { 207 RTPrintf("Media nested too deeply\n"); 208 return; 209 } 205 210 206 char *cbScaled = vboximgScaledSize(pInfo->cbSize); 211 207 int cPad = nestLevel * 2; … … 353 349 if (g_vboximgOpts.fVerbose) 354 350 { 355 RTPrintf("---------------------------------------------------------------- \n");351 RTPrintf("-----------------------------------------------------------------\n"); 356 352 RTPrintf("VM Name: \"%s\"\n", CSTR(machineName)); 357 353 RTPrintf("UUID: %s\n", CSTR(machineUuid)); … … 364 360 if (g_vboximgOpts.fWide & !g_vboximgOpts.fVerbose) 365 361 { 366 RTPrintf("---------------------------------------------------------------- "362 RTPrintf("----------------------------------------------------------------- " 367 363 "------------------------------------\n"); 368 RTPrintf("%-*s %*s %s\n", VM_MAX_NAME, CSTR(machineName), 3 2, "", CSTR(machineUuid));364 RTPrintf("%-*s %*s %s\n", VM_MAX_NAME, CSTR(machineName), 33, "", CSTR(machineUuid)); 369 365 } 370 366 else 371 367 { 372 RTPrintf("---------------------------------------------------------------- \n");368 RTPrintf("-----------------------------------------------------------------\n"); 373 369 RTPrintf("VM: %s\n", CSTR(machineName)); 374 370 RTPrintf("UUID: %s\n", CSTR(machineUuid));
Note:
See TracChangeset
for help on using the changeset viewer.