From: Per Bothner Date: Fri, 26 Feb 1993 00:03:24 +0000 (+0000) Subject: * printgprof (xmalloc, xrealloc): Cast results of malloc X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8a6e5b69e43c078963d790ba0fc1bb823d43954e;p=binutils-gdb.git * printgprof (xmalloc, xrealloc): Cast results of malloc and realloc to PTR. --- diff --git a/gprof/ChangeLog b/gprof/ChangeLog index c466d45bbf8..f97aaf3cbdf 100644 --- a/gprof/ChangeLog +++ b/gprof/ChangeLog @@ -1,3 +1,8 @@ +Thu Feb 25 16:01:50 1993 Per Bothner (bothner@rtl.cygnus.com) + + * printgprof (xmalloc, xrealloc): Cast results of malloc + and realloc to PTR. + Wed Feb 3 13:55:33 1993 Jeffrey Osier (jeffrey@fowanton.cygnus.com) * Makefile.in: created info, install-info, dvi diff --git a/gprof/printgprof.c b/gprof/printgprof.c index e8d55821f9b..a71767389e1 100644 --- a/gprof/printgprof.c +++ b/gprof/printgprof.c @@ -766,7 +766,7 @@ PTR xmalloc (size) long size; { - PTR val = malloc (size); + PTR val = (PTR) malloc (size); if (val == NULL) { fprintf (stderr, "virtual memory exhaused\n"); exit (1); @@ -779,7 +779,7 @@ xrealloc (oldval, size) PTR oldval; long size; { - PTR val = realloc (oldval, size); + PTR val = (PTR) realloc (oldval, size); if (val == NULL) { fprintf (stderr, "virtual memory exhaused\n"); exit (1);