diff --git a/harbour/ChangeLog b/harbour/ChangeLog index d1ab85a41f..eb3a2efc56 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -4,6 +4,9 @@ it was returning a cast of PHB_DYNS instead of the index. To accomodate this, added s_uiClosestDynSym = uiMiddle before the return in hb_dynsymFind. + * source/rtl/fm.c + * added a c/r before ---- for fm_statistics on exit. + also minor 'by' => 'but' 19990925-03:00 GMT+1 Victor Szel diff --git a/harbour/source/rtl/fm.c b/harbour/source/rtl/fm.c index 3c32b11dd4..932337e58d 100644 --- a/harbour/source/rtl/fm.c +++ b/harbour/source/rtl/fm.c @@ -163,6 +163,7 @@ void hb_xexit( void ) /* Deinitialize fixed memory subsystem */ { char buffer[ 100 ]; + hb_outerr( hb_consoleGetNewLine(), 0 ); hb_outerr( "----------------------------------------", 0 ); hb_outerr( hb_consoleGetNewLine(), 0 ); sprintf( buffer, "Total memory allocated: %ld bytes (%lu blocks)", s_ulMemoryMaxConsumed, s_ulMemoryMaxBlocks ); @@ -171,7 +172,7 @@ void hb_xexit( void ) /* Deinitialize fixed memory subsystem */ if( s_ulMemoryBlocks ) { hb_outerr( hb_consoleGetNewLine(), 0 ); - sprintf( buffer, "WARNING! Memory allocated by not released: %ld bytes (%ld blocks)", s_ulMemoryConsumed, s_ulMemoryBlocks ); + sprintf( buffer, "WARNING! Memory allocated but not released: %ld bytes (%ld blocks)", s_ulMemoryConsumed, s_ulMemoryBlocks ); hb_outerr( buffer, 0 ); } }