| 971 | } |
| 972 | |
| 973 | static int reftable_log_record_equal_void(const void *a, |
| 974 | const void *b, uint32_t hash_size) |
| 975 | { |
| 976 | return reftable_log_record_equal((struct reftable_log_record *) a, |
| 977 | (struct reftable_log_record *) b, |
| 978 | hash_size); |
| 979 | } |
| 980 | |
| 981 | static int reftable_log_record_cmp_void(const void *_a, const void *_b) |
| 982 | { |
nothing calls this directly
no test coverage detected