1
0
Fork 0

Silence another compiler warning.

This commit is contained in:
Max Neunhoeffer 2014-08-22 09:36:31 +02:00
parent 5d15b4fba5
commit c4918e4fb7
1 changed files with 1 additions and 1 deletions

View File

@ -865,7 +865,7 @@ int TRI_AddCollectionTransaction (TRI_transaction_t* trx,
}
// check if we already have got this collection in the _collections vector
size_t position;
size_t position = 0;
TRI_transaction_collection_t* trxCollection = FindCollection(trx, cid, &position);
if (trxCollection != nullptr) {