Commit 79aa03020d1a2020b4189ad272ee603af34f0921

Jiri Pospisil 2014-03-06T22:23:57

blame: Fix compare function's data types Previously the hunk_byfinalline_search_cmp function was called with different data types (size_t and uint32_t) for the key argument but expected only the former resulting in an invalid memory access when passed the latter on a 64 bit machine. The following patch makes sure that the function is called and works with the same type (size_t).