diff options
Diffstat (limited to 'src/shared/ProgressBar.cpp')
-rw-r--r-- | src/shared/ProgressBar.cpp | 6 |
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); |