2007-11-10 17:35 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* source/vm/hvm.c
     ! Fixed unused var warning when HB_NO_DEBUG was defined 
       and TRACE disabled. (Reported by Enrico Maria Giordano)
This commit is contained in:
Viktor Szakats
2007-11-10 16:40:54 +00:00
parent 050bed0d99
commit 6d733d7695
2 changed files with 8 additions and 1 deletions

View File

@@ -8,6 +8,11 @@
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2007-11-10 17:35 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* source/vm/hvm.c
! Fixed unused var warning when HB_NO_DEBUG was defined
and TRACE disabled. (Reported by Enrico Maria Giordano)
2007-11-10 17:24 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* make_b32.bat
* make_vc.bat

View File

@@ -5216,7 +5216,9 @@ static void hb_vmModuleName( char * szModuleName ) /* PRG and function name info
{
HB_TRACE(HB_TR_DEBUG, ("hb_vmModuleName(%s)", szModuleName));
#ifndef HB_NO_DEBUG
#ifdef HB_NO_DEBUG
HB_SYMBOL_UNUSED( szModuleName );
#else
if( s_pFunDbgEntry )
{
s_bDebugging = FALSE;