From baf67710997a2b46eddb2c76be1d521e618c975b Mon Sep 17 00:00:00 2001 From: Przemyslaw Czerpak Date: Tue, 21 Mar 2006 12:46:33 +0000 Subject: [PATCH] 2006-03-21 13:40 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/source/vm/hvm.c ! added missing void in hb_xvmActionRequest() declaration to avoid BCC warnings --- harbour/ChangeLog | 5 +++++ harbour/source/vm/hvm.c | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index fc8fec0a25..f1749d85c1 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2002-12-01 13:30 UTC+0100 Foo Bar */ * source/pp/ppcore.c + that in the future but in such case we will have to also update + hb_itemCopy() and hb_itemMove() so we can also update hb_itemSwap() + + * harbour/source/vm/asort.c + * harbour/source/vm/classes.c * harbour/source/vm/memvars.c * harbour/source/vm/hvm.c * cleaned the code which created HB_ITEMs on C stack. Only three diff --git a/harbour/source/vm/hvm.c b/harbour/source/vm/hvm.c index d966c640cf..d2a0219995 100644 --- a/harbour/source/vm/hvm.c +++ b/harbour/source/vm/hvm.c @@ -214,7 +214,6 @@ static void hb_vmDoInitStatics( void ); /* executes all _INITSTATICS f static void hb_vmDoInitFunctions( void ); /* executes all defined PRGs INIT functions */ static void hb_vmDoExitFunctions( void ); /* executes all defined PRGs EXIT functions */ static void hb_vmReleaseLocalSymbols( void ); /* releases the memory of the local symbols linked list */ -static BOOL hb_xvmActionRequest(void) ; extern void * hb_mthRequested( void ); /* profiler from classes.c */ extern void hb_mthAddTime( void *, ULONG ); /* profiler from classes.c */ @@ -5935,7 +5934,7 @@ ULONG hb_vmFlagEnabled( ULONG flags ) #define HB_XVM_RETURN return ( s_uiActionRequest ? hb_xvmActionRequest() : FALSE ); -static BOOL hb_xvmActionRequest() +static BOOL hb_xvmActionRequest( void ) { if( s_uiActionRequest & ( HB_ENDPROC_REQUESTED | HB_BREAK_REQUESTED ) ) return TRUE;