diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-01-31 23:22:07 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-01-31 23:22:07 +0000 |
commit | 8dbb1c6595ac7eab11c8d8d1706eba852adf4f56 (patch) | |
tree | 248190002e250667482afb7dc601a81b657b7834 /gdb/f-exp.y | |
parent | 8731e58ec78462405054a5229a108dc5fda8418a (diff) | |
download | gdb-8dbb1c6595ac7eab11c8d8d1706eba852adf4f56.zip gdb-8dbb1c6595ac7eab11c8d8d1706eba852adf4f56.tar.gz gdb-8dbb1c6595ac7eab11c8d8d1706eba852adf4f56.tar.bz2 |
2003-01-31 Andrew Cagney <ac131313@redhat.com>
* objc-exp.y, c-exp.y, f-exp.y: Remove PTR casts.
* utils.c: Update comments documenting legitimate uses of PTR.
Diffstat (limited to 'gdb/f-exp.y')
-rw-r--r-- | gdb/f-exp.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/f-exp.y b/gdb/f-exp.y index 56fd70a..6966231 100644 --- a/gdb/f-exp.y +++ b/gdb/f-exp.y @@ -564,7 +564,7 @@ direct_abs_decl: '(' abs_decl ')' func_mod: '(' ')' { $$ = 0; } | '(' nonempty_typelist ')' - { free ((PTR)$2); $$ = 0; } + { free ($2); $$ = 0; } ; typebase /* Implements (approximately): (type-qualifier)* type-specifier */ |