Changeset 18270 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Mar 25, 2009 6:08:04 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r18180 r18270 561 561 { 562 562 BOOL fCompleted; 563 LONG currentPercent;564 LONG lastPercent = 0;563 ULONG currentPercent; 564 ULONG lastPercent = 0; 565 565 566 566 RTPrintf("0%%..."); … … 574 574 { 575 575 /* make sure to also print out missed steps */ 576 for ( LONG curVal = (lastPercent / 10) * 10 + 10; curVal <= (currentPercent / 10) * 10; curVal += 10)576 for (ULONG curVal = (lastPercent / 10) * 10 + 10; curVal <= (currentPercent / 10) * 10; curVal += 10) 577 577 { 578 578 if (curVal < 100)
Note:
See TracChangeset
for help on using the changeset viewer.