summaryrefslogtreecommitdiffstats
path: root/usr.bin/gprof/printgprof.c
diff options
context:
space:
mode:
authorrgrimes <rgrimes@FreeBSD.org>1995-05-30 06:41:30 +0000
committerrgrimes <rgrimes@FreeBSD.org>1995-05-30 06:41:30 +0000
commita14d555c873398b14776ca4f2c33f9c69617afb9 (patch)
tree350f6f98843363254f9afe467ae0c92d5a9d7f43 /usr.bin/gprof/printgprof.c
parentf3a2b348daf9fa6063c38d2d69563f732a2f80e7 (diff)
downloadFreeBSD-src-a14d555c873398b14776ca4f2c33f9c69617afb9.zip
FreeBSD-src-a14d555c873398b14776ca4f2c33f9c69617afb9.tar.gz
Remove trailing whitespace.
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