summaryrefslogtreecommitdiffstats
path: root/usr.bin/gprof/printgprof.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/gprof/printgprof.c')
-rw-r--r--usr.bin/gprof/printgprof.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/gprof/printgprof.c b/usr.bin/gprof/printgprof.c
index 884c368..716fd8b 100644
--- a/usr.bin/gprof/printgprof.c
+++ b/usr.bin/gprof/printgprof.c
@@ -90,7 +90,7 @@ timecmp( npp1 , npp2 )
*/
flatprofheader()
{
-
+
if ( bflag ) {
printblurb( _PATH_FLAT_BLURB );
}
@@ -260,7 +260,7 @@ totalcmp( npp1 , npp2 )
return 1;
if ( diff > 0.0 )
return -1;
- if ( np1 -> name == 0 && np1 -> cycleno != 0 )
+ if ( np1 -> name == 0 && np1 -> cycleno != 0 )
return -1;
if ( np2 -> name == 0 && np2 -> cycleno != 0 )
return 1;
@@ -274,7 +274,7 @@ totalcmp( npp1 , npp2 )
return 1;
if ( np1 -> ncall > np2 -> ncall )
return -1;
- if ( np1 -> ncall < np2 -> ncall )
+ if ( np1 -> ncall < np2 -> ncall )
return 1;
return strcmp( np1 -> name , np2 -> name );
}
@@ -497,7 +497,7 @@ printmembers( cyclep )
sortmembers( cyclep );
for ( memberp = cyclep -> cnext ; memberp ; memberp = memberp -> cnext ) {
- printf( "%6.6s %5.5s %7.2f %11.2f %7d" ,
+ printf( "%6.6s %5.5s %7.2f %11.2f %7d" ,
"" , "" , memberp -> propself / hz , memberp -> propchild / hz ,
memberp -> npropcall );
if ( memberp -> selfcalls != 0 ) {
OpenPOWER on IntegriCloud