summaryrefslogtreecommitdiffstats
path: root/rpmmodule
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>1999-12-08 16:05:25 +0000
committerErik Troan <ewt@redhat.com>1999-12-08 16:05:25 +0000
commit9035300de1cbf4c4dcd4006e49451001f1f50328 (patch)
tree20dafb2da5a80dd11c56876959f9ba10f6a33951 /rpmmodule
parente8472edb6014e137f28b2ac1ce1e8c8cf63aff0b (diff)
downloadanaconda-9035300de1cbf4c4dcd4006e49451001f1f50328.tar.gz
anaconda-9035300de1cbf4c4dcd4006e49451001f1f50328.tar.xz
anaconda-9035300de1cbf4c4dcd4006e49451001f1f50328.zip
added some const's
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);