From 718abfd6f85588dd60f343bc66d342fe0e513ede Mon Sep 17 00:00:00 2001 From: Emmo Emminghaus Date: Sat, 27 Oct 2018 17:45:10 +0200 Subject: [PATCH] cleanup void * in _hashindex.c (2nd) --- src/borg/_hashindex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/borg/_hashindex.c b/src/borg/_hashindex.c index 85e2e02bc..f46d4d80b 100644 --- a/src/borg/_hashindex.c +++ b/src/borg/_hashindex.c @@ -104,7 +104,7 @@ static void hashindex_write(HashIndex *index, PyObject *file_py); static uint64_t hashindex_compact(HashIndex *index); static HashIndex *hashindex_init(int capacity, int key_size, int value_size); static const unsigned char *hashindex_get(HashIndex *index, const unsigned char *key); -static int hashindex_set(HashIndex *index, const unsigned char *key, const unsigned void *value); +static int hashindex_set(HashIndex *index, const unsigned char *key, const unsigned char *value); static int hashindex_delete(HashIndex *index, const unsigned char *key); static unsigned char *hashindex_next_key(HashIndex *index, const unsigned char *key); @@ -545,7 +545,7 @@ hashindex_get(HashIndex *index, const unsigned char *key) } static int -hashindex_set(HashIndex *index, const unsigned char *key, const void *value) +hashindex_set(HashIndex *index, const unsigned char *key, const unsigned char *value) { int start_idx; int idx = hashindex_lookup(index, key, &start_idx);