aboutsummaryrefslogtreecommitdiff
path: root/src/shared/ProgressBar.cpp
diff options
context:
space:
mode:
authormaximius <none@none>2009-10-17 16:20:24 -0700
committermaximius <none@none>2009-10-17 16:20:24 -0700
commit3f338cc1c328c7280957583b50598292cd8fb64b (patch)
treeca209c2cd024e3902b7844b3224bceff7c5bb570 /src/shared/ProgressBar.cpp
parente585187b248f48b3c6e9247b49fa07c6565d65e5 (diff)
*Massive cleanup redux.
--HG-- branch : trunk
Diffstat (limited to 'src/shared/ProgressBar.cpp')
-rw-r--r--src/shared/ProgressBar.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shared/ProgressBar.cpp b/src/shared/ProgressBar.cpp
index 2eba31c2c40..61d037bb42e 100644
--- a/src/shared/ProgressBar.cpp
+++ b/src/shared/ProgressBar.cpp
@@ -46,7 +46,7 @@ barGoLink::barGoLink( int row_count )
#else
printf( "[" );
#endif
- for ( int i = 0; i < indic_len; i++ ) printf( empty );
+ for (int i = 0; i < indic_len; i++ ) printf( empty );
#ifdef _WIN32
printf( "\x3D 0%%\r\x3D" );
#else
@@ -69,8 +69,8 @@ void barGoLink::step( void )
#else
printf( "\r[" );
#endif
- for ( i = 0; i < n; i++ ) printf( full );
- for ( ; i < indic_len; i++ ) printf( empty );
+ for (i = 0; i < n; i++ ) printf( full );
+ for (; i < indic_len; i++ ) printf( empty );
float percent = (((float)n/(float)indic_len)*100);
#ifdef _WIN32
printf( "\x3D %i%% \r\x3D", (int)percent);