diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-01-10 03:04:41 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-01-10 03:04:41 +0000 |
commit | 77d3109be28c227a324991307b0e2e46774b011c (patch) | |
tree | e064acf94ef904267708e251567092ae16d89098 /gcc/java/class.c | |
parent | 17211ab55314d76370a68036f2d057b1effd687f (diff) | |
download | gcc-77d3109be28c227a324991307b0e2e46774b011c.zip gcc-77d3109be28c227a324991307b0e2e46774b011c.tar.gz gcc-77d3109be28c227a324991307b0e2e46774b011c.tar.bz2 |
* class.c, gjavah.c, parse.y, verify.c: Don't use PTR.
From-SVN: r61137
Diffstat (limited to 'gcc/java/class.c')
-rw-r--r-- | gcc/java/class.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |