fix warnings

This commit is contained in:
Glenn Maynard
2004-02-16 07:25:59 +00:00
parent 08a1a67831
commit 2218b6e5b8
+2 -2
View File
@@ -101,7 +101,7 @@ inline void PrintTable(RageFile &f,Table &table)
{
f.Write("<tr>");
const Table::Line& line = (i<vLines.size()) ? vLines[i] : Table::Line();
const Table::Line& line = (i<(int)vLines.size()) ? vLines[i] : Table::Line();
if( bPrintRank )
{
f.Write("<td class='rank'>");
@@ -325,7 +325,7 @@ void PrintGroups( RageFile &f, const Profile *pProfile, CString sTitle, FnPrintG
PRINT_OPEN(f, sTitle );
{
for( int g=0; g<asGroups.size(); g++ )
for( unsigned g=0; g<asGroups.size(); g++ )
{
CString sGroup = asGroups[g];