Skip to content

Commit

Permalink
Fix fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
neunhoef committed Aug 25, 2015
1 parent 010e3e0 commit c99fabe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arangod/Indexes/HashIndex.h
Expand Up @@ -193,8 +193,8 @@ namespace triagens {
return hash;
}

return fasthash64(&(element->document()),
sizeof(TRI_doc_mptr_t*), hash);
TRI_doc_mptr_t* ptr = element->document();
return fasthash64(&ptr, sizeof(TRI_doc_mptr_t*), hash);
}
};

Expand Down

0 comments on commit c99fabe

Please sign in to comment.