diff options
Diffstat (limited to 'gcc/cpphash.c')
-rw-r--r-- | gcc/cpphash.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/cpphash.c b/gcc/cpphash.c index 8016189bc5d..1e07f41f7ac 100644 --- a/gcc/cpphash.c +++ b/gcc/cpphash.c @@ -37,8 +37,7 @@ alloc_node (hash_table *table) { cpp_hashnode *node; - node = (cpp_hashnode *) obstack_alloc (&table->pfile->hash_ob, - sizeof (cpp_hashnode)); + node = obstack_alloc (&table->pfile->hash_ob, sizeof (cpp_hashnode)); memset (node, 0, sizeof (cpp_hashnode)); return node; } |