summaryrefslogtreecommitdiffstats
path: root/usr.bin/gprof/arcs.c
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2002-02-21 12:07:21 +0000
committerbde <bde@FreeBSD.org>2002-02-21 12:07:21 +0000
commit410e57d607b880921d54f9943b712bc5cca607cd (patch)
tree68ae29f63b9ab11211c7414b3e89eb46039d0f09 /usr.bin/gprof/arcs.c
parent2587888af49c047c8ce3a68fcafb15d8cdf5c126 (diff)
downloadFreeBSD-src-410e57d607b880921d54f9943b712bc5cca607cd.zip
FreeBSD-src-410e57d607b880921d54f9943b712bc5cca607cd.tar.gz
Fixed printf format errors. In printgprof.c, also convert the scale
without possibly losing lots of precision, and print the scale using %g instead of %d in case it is non-integral. %g might not be the best format for this.
Diffstat (limited to 'usr.bin/gprof/arcs.c')
-rw-r--r--usr.bin/gprof/arcs.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/gprof/arcs.c b/usr.bin/gprof/arcs.c
index b75cd55..3cd0452 100644
--- a/usr.bin/gprof/arcs.c
+++ b/usr.bin/gprof/arcs.c
@@ -61,7 +61,7 @@ addarc( parentp , childp , count )
# ifdef DEBUG
if ( debug & TALLYDEBUG ) {
- printf( "[addarc] %d arcs from %s to %s\n" ,
+ printf( "[addarc] %ld arcs from %s to %s\n" ,
count , parentp -> name , childp -> name );
}
# endif DEBUG
@@ -72,7 +72,7 @@ addarc( parentp , childp , count )
*/
# ifdef DEBUG
if ( debug & TALLYDEBUG ) {
- printf( "[tally] hit %d += %d\n" ,
+ printf( "[tally] hit %ld += %ld\n" ,
arcp -> arc_count , count );
}
# endif DEBUG
@@ -173,7 +173,7 @@ doarcs()
*/
# ifdef DEBUG
if ( debug & BREAKCYCLE ) {
- printf("[doarcs] pass %d, cycle(s) %d\n" , pass , ncycle );
+ printf("[doarcs] pass %ld, cycle(s) %d\n" , pass , ncycle );
}
# endif DEBUG
if ( pass == 1 ) {
@@ -342,7 +342,7 @@ timepropagate( parentp )
if ( debug & PROPDEBUG ) {
printf( "[dotime] child \t" );
printname( childp );
- printf( " with %f %f %d/%d\n" ,
+ printf( " with %f %f %ld/%ld\n" ,
childp -> time , childp -> childtime ,
arcp -> arc_count , childp -> npropcall );
printf( "[dotime] parent\t" );
@@ -718,13 +718,13 @@ compresslist()
maxarcp -> arc_childp -> npropcall -= maxarcp -> arc_count;
# ifdef DEBUG
if ( debug & BREAKCYCLE ) {
- printf( "%s delete %s arc: %s (%d) -> %s from %d cycle(s)\n" ,
+ printf( "%s delete %s arc: %s (%ld) -> %s from %u cycle(s)\n" ,
"[compresslist]" , type , maxarcp -> arc_parentp -> name ,
maxarcp -> arc_count , maxarcp -> arc_childp -> name ,
maxarcp -> arc_cyclecnt );
}
# endif DEBUG
- printf( "\t%s to %s with %d calls\n" , maxarcp -> arc_parentp -> name ,
+ printf( "\t%s to %s with %ld calls\n" , maxarcp -> arc_parentp -> name ,
maxarcp -> arc_childp -> name , maxarcp -> arc_count );
prev = &cyclehead;
for ( clp = cyclehead ; clp ; ) {
@@ -757,7 +757,7 @@ printsubcycle( clp )
printf( "%s <cycle %d>\n" , (*arcpp) -> arc_parentp -> name ,
(*arcpp) -> arc_parentp -> cycleno ) ;
for ( endlist = &clp -> list[ clp -> size ]; arcpp < endlist ; arcpp++ )
- printf( "\t(%d) -> %s\n" , (*arcpp) -> arc_count ,
+ printf( "\t(%ld) -> %s\n" , (*arcpp) -> arc_count ,
(*arcpp) -> arc_childp -> name ) ;
}
#endif DEBUG
OpenPOWER on IntegriCloud