summaryrefslogtreecommitdiffstats
path: root/rpmmodule
diff options
context:
space:
mode:
Diffstat (limited to 'rpmmodule')
-rw-r--r--rpmmodule/hash.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpmmodule/hash.h b/rpmmodule/hash.h
index 26b638787..27b5bb521 100644
--- a/rpmmodule/hash.h
+++ b/rpmmodule/hash.h
@@ -13,8 +13,8 @@ typedef struct ht_iterator htIterator;
struct hash_table *htNewTable(int size);
void htFreeHashTable(struct hash_table *ht);
-char *htInTable(struct hash_table *t, char *s);
-void htAddToTable(struct hash_table *t, char *s);
+char *htInTable(struct hash_table *t, const char *s);
+void htAddToTable(struct hash_table *t, const char *s);
void htPrintHashStats(struct hash_table *t);
int htNumEntries(struct hash_table *t);