Remove unnecessary casts on obstack_alloc invocations.
[deliverable/binutils-gdb.git] / binutils / windmc.c
index 283c2657506d79dcf875e6046cc8b7c38e0d3977..9392d657647d3c973d79943017c09012da2f45ba 100644 (file)
@@ -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 *
This page took 0.023637 seconds and 4 git commands to generate.