*** empty log message ***

This commit is contained in:
Paul Tucker
1999-09-25 03:42:13 +00:00
parent 34d7127af5
commit f271ec1b1e
2 changed files with 5 additions and 1 deletions

View File

@@ -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 <info@szelvesz.hu>

View File

@@ -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 );
}
}