Changeset 37097 in vbox
- Timestamp:
- May 16, 2011 10:28:37 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r37074 r37097 49 49 * Global Variables * 50 50 *******************************************************************************/ 51 /*extern*/ bool g_fDetailedProgress = false;51 /*extern*/ bool g_fDetailedProgress = true; 52 52 53 53 #ifndef VBOX_ONLY_DOCS … … 152 152 progress->COMGETTER(TimeRemaining)(&lSecsRem); 153 153 154 RTStrmPrintf(g_pStdErr, "(% ld/%ld) %ls %ld%% => %ld%% (%d s remaining)\n", ulOperation + 1, cOperations, bstrOperationDescription.raw(), ulCurrentOperationPercent, ulCurrentPercent, lSecsRem);154 RTStrmPrintf(g_pStdErr, "(%u/%u) %ls %02u%% => %02u%% (%d s remaining)\n", ulOperation + 1, cOperations, bstrOperationDescription.raw(), ulCurrentOperationPercent, ulCurrentPercent, lSecsRem); 155 155 ulLastPercent = ulCurrentPercent; 156 156 ulLastOperationPercent = ulCurrentOperationPercent; … … 167 167 if (curVal < 100) 168 168 { 169 RTStrmPrintf(g_pStdErr, "% ld%%...", curVal);169 RTStrmPrintf(g_pStdErr, "%u%%...", curVal); 170 170 RTStrmFlush(g_pStdErr); 171 171 }
Note:
See TracChangeset
for help on using the changeset viewer.