diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-08 16:26:37 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-08 16:26:37 +0000 |
commit | b77d3fd041800371a8daea4158f33b9f84b09886 (patch) | |
tree | 31573e0883f857852c86cc0ea53e9af1dd9a644c /libiberty | |
parent | ae6130f3fde896aee5ea3550ad796f05a1f66d27 (diff) | |
download | gcc-b77d3fd041800371a8daea4158f33b9f84b09886.tar.gz |
* hashtab.c (traverse_hash_table): Protect prototype with PARAMS.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30453 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 4 | ||||
-rw-r--r-- | libiberty/hashtab.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index d0144fce4f8..8e5756e29a1 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,7 @@ +Mon Nov 8 09:23:41 1999 Jeffrey A Law (law@cygnus.com) + + * hashtab.c (traverse_hash_table): Protect prototype with PARAMS. + Tue Nov 2 03:23:13 1999 Philippe De Muyter <phdm@macqel.be> * xstrdup (sys/types.h): Include this file. diff --git a/libiberty/hashtab.c b/libiberty/hashtab.c index 9fce8ccc125..67a79f7e509 100644 --- a/libiberty/hashtab.c +++ b/libiberty/hashtab.c @@ -266,7 +266,7 @@ clear_hash_table_slot (htab, slot) void traverse_hash_table (htab, callback, info) hash_table_t htab; - int (*callback) (hash_table_entry_t, void *); + int (*callback) PARAMS ((hash_table_entry_t, void *)); void *info; { hash_table_entry_t *entry_ptr; |