* core.c (read_function_mappings): Cast xmalloc return.
+Wed Aug 7 14:43:51 1996 Philippe De Muyter <phdm@info.ucl.ac.be>
+
+ * core.c (read_function_mappings): Cast xmalloc return.
+
Thu Jul 4 12:01:42 1996 Ian Lance Taylor <ian@cygnus.com>
* gprof.c (VERSION): Define as "2.7.1".
}
/* Now we know how big we need to make our table. */
- symbol_map = xmalloc (count * sizeof (struct function_map));
+ symbol_map = ((struct function_map *)
+ xmalloc (count * sizeof (struct function_map)));
/* Rewind the input file so we can read it again. */
rewind (file);