1
0
Fork 0

fixed gcc warnings

This commit is contained in:
Jan Steemann 2013-04-11 19:11:09 +02:00
parent b6925a7b7b
commit e128b40735
1 changed files with 2 additions and 2 deletions

View File

@ -2217,7 +2217,7 @@ static int OpenIteratorAbortTransaction (open_iterator_state_t* state) {
if (res == TRI_ERROR_NO_ERROR) {
size_t i, n;
LOG_INFO("recovering transaction %llu", state->_tid);
LOG_INFO("recovering transaction %llu", (unsigned long long) state->_tid);
n = state->_operations._length;
for (i = 0; i < n; ++i) {
@ -2236,7 +2236,7 @@ static int OpenIteratorAbortTransaction (open_iterator_state_t* state) {
}
}
LOG_INFO("rolling back uncommitted transaction %llu", state->_tid);
LOG_INFO("rolling back uncommitted transaction %llu", (unsigned long long) state->_tid);
OpenIteratorResetOperations(state);
}