diff options
Diffstat (limited to 'usr.bin/gprof/printgprof.c')
-rw-r--r-- | usr.bin/gprof/printgprof.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/gprof/printgprof.c b/usr.bin/gprof/printgprof.c index 945ff8d..80698cf 100644 --- a/usr.bin/gprof/printgprof.c +++ b/usr.bin/gprof/printgprof.c @@ -100,7 +100,7 @@ flatprofheader() printblurb( _PATH_FLAT_BLURB ); } printf( "\ngranularity: each sample hit covers %g byte(s)" , - scale * sizeof(UNIT) ); + scale * HISTORICAL_SCALE_2 ); if ( totime > 0.0 ) { printf( " for %.2f%% of %.2f seconds\n\n" , 100.0/totime , totime / hz ); @@ -161,7 +161,7 @@ gprofheader() printblurb( _PATH_CALLG_BLURB ); } printf( "\ngranularity: each sample hit covers %g byte(s)" , - scale * sizeof(UNIT) ); + scale * HISTORICAL_SCALE_2 ); if ( printtime > 0.0 ) { printf( " for %.2f%% of %.2f seconds\n\n" , 100.0/printtime , printtime / hz ); |