diff options
Diffstat (limited to 'bfd/hash.c')
-rw-r--r-- | bfd/hash.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ /* hash.c -- hash table routines for BFD Copyright 1993, 1994, 1995, 1997, 1999, 2001, 2002, 2003, 2004, 2005, - 2006, 2007, 2009, 2010, 2011 Free Software Foundation, Inc. + 2006, 2007, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. Written by Steve Chamberlain <sac@cygnus.com> This file is part of BFD, the Binary File Descriptor library. @@ -538,7 +538,7 @@ bfd_hash_insert (struct bfd_hash_table *table, table->frozen = 1; return hashp; } - memset ((PTR) newtable, 0, alloc); + memset (newtable, 0, alloc); for (hi = 0; hi < table->size; hi ++) while (table->table[hi]) |