summaryrefslogtreecommitdiffstats
path: root/libopkg/hash_table.h
diff options
context:
space:
mode:
Diffstat (limited to 'libopkg/hash_table.h')
-rw-r--r--libopkg/hash_table.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopkg/hash_table.h b/libopkg/hash_table.h
index 388a966..d4e8a3d 100644
--- a/libopkg/hash_table.h
+++ b/libopkg/hash_table.h
@@ -22,7 +22,7 @@ typedef struct hash_entry hash_entry_t;
typedef struct hash_table hash_table_t;
struct hash_entry {
- const char * key;
+ char * key;
void * data;
struct hash_entry * next;
};