[wpdev-commits] wolfpack/unix console_unix.cpp,1.14,1.15
Brought to you by:
rip,
thiagocorrea
From: Richard M. <dr...@us...> - 2004-09-19 23:41:09
|
Update of /cvsroot/wpdev/wolfpack/unix In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6634/unix Modified Files: console_unix.cpp Log Message: Warning fixes, fear my newbie fixing skills! Index: console_unix.cpp =================================================================== RCS file: /cvsroot/wpdev/wolfpack/unix/console_unix.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** console_unix.cpp 14 Sep 2004 18:05:16 -0000 1.14 --- console_unix.cpp 19 Sep 2004 23:41:00 -0000 1.15 *************** *** 224,228 **** void cConsole::rollbackChars(unsigned int count) { ! for (int i = 0; i < count; ++i) { fprintf( stdout, "\b" ); } --- 224,228 ---- void cConsole::rollbackChars(unsigned int count) { ! for (unsigned int i = 0; i < count; ++i) { fprintf( stdout, "\b" ); } *************** *** 240,244 **** return; } ! // If a progress message is waiting, remove it. if ( !progress.isEmpty() ) --- 240,244 ---- return; } ! // If a progress message is waiting, remove it. if ( !progress.isEmpty() ) |