diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2009-01-14 20:06:29 +0100 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2009-01-14 20:06:29 +0100 |
commit | 3e353c58a138d87ae31a9a18ec716c08ba3dc3cf (patch) | |
tree | c39e7f47f8abe853f6e6fcd5e6fad17f6012c6db /src/hash.c | |
parent | 6ceaa21f2a40cce6a9c45e99a9164618250fe6a3 (diff) | |
download | conntrack-tools-3e353c58a138d87ae31a9a18ec716c08ba3dc3cf.tar.gz conntrack-tools-3e353c58a138d87ae31a9a18ec716c08ba3dc3cf.zip |
src: constify hashtable parameter in hash() callbacks
This patch constifies the hashtable parameter that is passed to the
hash callbacks registered when the hashtable is created.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/hash.c')
-rw-r--r-- | src/hash.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -46,7 +46,8 @@ void hashtable_destroy_node(struct hashtable_node *h) struct hashtable * hashtable_create(int hashsize, int limit, int datasize, - uint32_t (*hash)(const void *data, struct hashtable *table), + uint32_t (*hash)(const void *data, + const struct hashtable *table), int (*compare)(const void *data1, const void *data2)) { int i; |