FULLPIPE: Fix warning
This commit is contained in:
parent
4c445c6446
commit
c37d70b933
1 changed files with 1 additions and 1 deletions
|
@ -573,7 +573,7 @@ int GlobalMessageQueueList::compact() {
|
||||||
disableQueueById(_storage[i]->_id);
|
disableQueueById(_storage[i]->_id);
|
||||||
remove_at(i);
|
remove_at(i);
|
||||||
} else {
|
} else {
|
||||||
if (_storage[i]->_id < size() + 2)
|
if ((uint)_storage[i]->_id < size() + 2)
|
||||||
useList[_storage[i]->_id] = 1;
|
useList[_storage[i]->_id] = 1;
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue