summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Roche <xroche@users.noreply.github.com>2014-06-10 16:43:33 +0000
committerXavier Roche <xroche@users.noreply.github.com>2014-06-10 16:43:33 +0000
commitd2103fce8a15d5c87f3c7b3f1870b8331d64bd13 (patch)
tree98821a1616aae3ed2dea839af1e81bbf02aab7b7
parent93ae992d7bc8820abb5806bb46082fc5c1e29eb9 (diff)
Fixed const
-rw-r--r--src/htsinthash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htsinthash.c b/src/htsinthash.c
index b5fa833..00f5d2a 100644
--- a/src/htsinthash.c
+++ b/src/htsinthash.c
@@ -978,7 +978,7 @@ static int inthash_add_item_(inthash hashtable, inthash_item item) {
}
int inthash_write_value(inthash hashtable, inthash_key_const name,
- inthash_value value) {
+ inthash_value_const value) {
/* replace of add item */
const int ret = inthash_write_value_(hashtable, name, value);