diff options
author | Alan Modra <amodra@gmail.com> | 2008-10-21 00:26:17 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2008-10-21 00:26:17 +0000 |
commit | 78aff5a5271ab14960fec98805bd1c295cab6d8d (patch) | |
tree | 43f6e4e4a3f01abe61b8bfad5fdada2d6de8050d /binutils/windmc.c | |
parent | 1631ca86c3bde3a7b7089ade915f9aeea47b6034 (diff) | |
download | gdb-78aff5a5271ab14960fec98805bd1c295cab6d8d.zip gdb-78aff5a5271ab14960fec98805bd1c295cab6d8d.tar.gz gdb-78aff5a5271ab14960fec98805bd1c295cab6d8d.tar.bz2 |
Remove unnecessary casts on obstack_alloc invocations.
Diffstat (limited to 'binutils/windmc.c')
-rw-r--r-- | binutils/windmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/windmc.c b/binutils/windmc.c index 283c265..9392d65 100644 --- a/binutils/windmc.c +++ b/binutils/windmc.c @@ -175,7 +175,7 @@ res_init (void) void * res_alloc (rc_uint_type bytes) { - return (void *) obstack_alloc (&res_obstack, (size_t) bytes); + return obstack_alloc (&res_obstack, (size_t) bytes); } static FILE * |