aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gprof/ChangeLog5
-rw-r--r--gprof/printgprof.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/gprof/ChangeLog b/gprof/ChangeLog
index ebdc4dc..79a6041 100644
--- a/gprof/ChangeLog
+++ b/gprof/ChangeLog
@@ -1,3 +1,8 @@
+Fri Sep 23 15:06:45 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
+
+ * printgprof.c (printprof): Use free, not cfree.
+ (printgprof, printindex): Ditto.
+
Thu Sep 1 10:40:45 1994 Jeff Law (law@snake.cs.utah.edu)
* gprof.h (kfromlist, ktolist, flist, Flist, elist, Elist): Make
diff --git a/gprof/printgprof.c b/gprof/printgprof.c
index a717673..f4e5167 100644
--- a/gprof/printgprof.c
+++ b/gprof/printgprof.c
@@ -57,7 +57,7 @@ printprof()
flatprofline( np );
}
actime = 0.0;
- cfree( sortednlp );
+ free( sortednlp );
if ( bflag && !bsd_style_output ) {
flat_blurb(stdout);
}
@@ -244,7 +244,7 @@ printgprof(timesortnlp)
if (bsd_style_output)
printf( "\n" );
}
- cfree( timesortnlp );
+ free( timesortnlp );
if ( bflag && !bsd_style_output) {
fsf_callg_blurb(stdout);
}
@@ -759,7 +759,7 @@ printindex()
}
printf( "\n" );
}
- cfree( namesortnlp );
+ free( namesortnlp );
}
PTR