summaryrefslogtreecommitdiffstats
path: root/libopkg/hash_table.h
diff options
context:
space:
mode:
authorticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2008-12-15 00:18:11 (EST)
committer ticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2008-12-15 00:18:11 (EST)
commit90299e3df5c5d5eb4ae2189b11e44ec83995ca62 (patch)
treea405f8b82e3b9514d9397698bba73742dfc4ede6 /libopkg/hash_table.h
parentddd373d69aac313269e6465a83c633d9a1815643 (diff)
opkg: (leak fixing, day 1) lots and lots of memory leaks fixed
git-svn-id: http://opkg.googlecode.com/svn/trunk@114 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
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;
};