From 77d3109be28c227a324991307b0e2e46774b011c Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Fri, 10 Jan 2003 03:04:41 +0000 Subject: * class.c, gjavah.c, parse.y, verify.c: Don't use PTR. From-SVN: r61137 --- gcc/java/class.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/java/class.c') diff --git a/gcc/java/class.c b/gcc/java/class.c index 29a3aa7..c1d8857 100644 --- a/gcc/java/class.c +++ b/gcc/java/class.c @@ -2314,7 +2314,7 @@ java_treetreehash_new (ht, t) htab_t ht; tree t; { - PTR *e; + void **e; struct treetreehash_entry *tthe; hashval_t hv = JAVA_TREEHASHHASH_H (t); @@ -2323,7 +2323,7 @@ java_treetreehash_new (ht, t) { tthe = (*ht->alloc_f) (1, sizeof (*tthe)); tthe->key = t; - *e = (PTR) tthe; + *e = tthe; } else tthe = (struct treetreehash_entry *) *e; -- cgit v1.1