FULLPIPE: Fix warning

This commit is contained in:
Eugene Sandulenko 2013-12-15 22:48:01 +02:00
parent 4c445c6446
commit c37d70b933

View File

@ -573,7 +573,7 @@ int GlobalMessageQueueList::compact() {
disableQueueById(_storage[i]->_id);
remove_at(i);
} else {
if (_storage[i]->_id < size() + 2)
if ((uint)_storage[i]->_id < size() + 2)
useList[_storage[i]->_id] = 1;
i++;
}