Fixed signed comparison warning in ProfileManager.

This commit is contained in:
Kyzentun
2014-12-12 22:16:42 -07:00
parent 6f8b5f2477
commit c5b24c2ca6
+1 -1
View File
@@ -784,7 +784,7 @@ void ProfileManager::MoveProfilePriority(int index, bool up)
if(curr->profile.m_ListPriority != priority)
{
curr->profile.m_ListPriority= priority;
if(i != index && i != swindex)
if(i != static_cast<size_t>(index) && i != static_cast<size_t>(swindex))
{
curr->profile.SaveTypeToDir(curr->sDir);
}