diff options
Diffstat (limited to 'gas/hash.c')
-rw-r--r-- | gas/hash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/hash.c b/gas/hash.c index 4a4768c4af4..06fadcbf4d7 100644 --- a/gas/hash.c +++ b/gas/hash.c @@ -237,7 +237,7 @@ hash_insert (struct hash_control *table, const char *key, void *value) ++table->insertions; #endif - p = (struct hash_entry *) obstack_alloc (&table->memory, sizeof (*p)); + p = obstack_alloc (&table->memory, sizeof (*p)); p->string = key; p->hash = hash; p->data = value; @@ -274,7 +274,7 @@ hash_jam (struct hash_control *table, const char *key, void *value) ++table->insertions; #endif - p = (struct hash_entry *) obstack_alloc (&table->memory, sizeof (*p)); + p = obstack_alloc (&table->memory, sizeof (*p)); p->string = key; p->hash = hash; p->data = value; |