summaryrefslogtreecommitdiffstats
path: root/include/hash.h
diff options
context:
space:
mode:
author/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org </C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org>2008-01-15 12:53:58 +0000
committer/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org </C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org>2008-01-15 12:53:58 +0000
commit17c3451c18389990d74936e79ee19a4aa15e97d0 (patch)
tree3d3364c3120ad361b8951a1302be79bf83c2de4c /include/hash.h
parentb861a707522e8625b4a5b4145b97a8825037572f (diff)
Max Kellermann <max@duempel.org>:
use const when possible
Diffstat (limited to 'include/hash.h')
-rw-r--r--include/hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hash.h b/include/hash.h
index fd971e7..c9460fa 100644
--- a/include/hash.h
+++ b/include/hash.h
@@ -42,6 +42,6 @@ int hashtable_del(struct hashtable *table, void *data);
int hashtable_flush(struct hashtable *table);
int hashtable_iterate(struct hashtable *table, void *data,
int (*iterate)(void *data1, void *data2));
-unsigned int hashtable_counter(struct hashtable *table);
+unsigned int hashtable_counter(const struct hashtable *table);
#endif