diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 73379e4050..d860f0ae7a 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,4 +1,11 @@ +2001-07-23 18:24 GMT Dave Pearson + + * source/rtl/profiler.prg + * Access method `nSeconds' in class HB_ProfileEntity now used + HB_CLOCKS2SECS to calculate seconds. + 2001-07-23 18:15 GMT Dave Pearson + * source/rtl/seconds.c * Renamed CLOCKS2SECS() to HB_CLOCKS2SECS(). diff --git a/harbour/source/rtl/profiler.prg b/harbour/source/rtl/profiler.prg index 67bd0c25b9..fbaeb430ed 100644 --- a/harbour/source/rtl/profiler.prg +++ b/harbour/source/rtl/profiler.prg @@ -236,7 +236,7 @@ Return( self ) ///// Access nSeconds Class HB_ProfileEntity -Return( ::nTicks / 1000 ) +Return( HB_Clocks2Secs( ::nTicks ) ) /////