fixed a warning in MSVC++

This commit is contained in:
mes5k 2004-09-09 03:09:32 +00:00
parent c22fcbad64
commit 1064a196d1

View File

@ -120,7 +120,7 @@ void CmdLine::_shortUsage( ostream& os )
if ( !_xorHandler.contains( (*it) ) )
s += " " + (*it)->shortID();
spacePrint( os, s, 75, 3, _progName.length() + 2 );
spacePrint( os, s, 75, 3, (int)(_progName.length()) + 2 );
}
void CmdLine::_longUsage( ostream& os )