1
0
Fork 0

fixed warning

This commit is contained in:
Jan Steemann 2014-05-09 09:03:42 +02:00
parent 20f1940458
commit 3efb22ef4c
1 changed files with 1 additions and 1 deletions

View File

@ -2004,7 +2004,7 @@ int TRI_CompareShapeTypes (TRI_doc_mptr_t* leftDocument,
result = 0;
for (size_t i = 0; i < numWeightedList; ++i) {
for (int i = 0; i < numWeightedList; ++i) {
if (leftWeightedList[i]._weight != rightWeightedList[i]._weight) {
result = (leftWeightedList[i]._weight < rightWeightedList[i]._weight ? -1: 1);
break;