* printgprof (xmalloc, xrealloc): Cast results of malloc
authorPer Bothner <per@bothner.com>
Fri, 26 Feb 1993 00:03:24 +0000 (00:03 +0000)
committerPer Bothner <per@bothner.com>
Fri, 26 Feb 1993 00:03:24 +0000 (00:03 +0000)
and realloc to PTR.

gprof/ChangeLog
gprof/printgprof.c

index c466d45bbf82a501155812509531f9febfc9386c..f97aaf3cbdf5909abc49dffa9c2f523390c11764 100644 (file)
@@ -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
index e8d55821f9bdb8af5f98a6ccc9304cee4f5b3365..a71767389e15a723b2e5eb31e71413a84af05136 100644 (file)
@@ -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);